Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width">
  6. <title>JS Bin</title>
  7. </head>
  8. <body>
  9.  
  10. <script id="jsbin-javascript">
  11. var price = 15.00; // price of our hammer
  12. var money = 20.00; // how much money I have
  13.  
  14. if (money >= price) {
  15. console.log("Buy the hammer")
  16. } else {
  17. console.log("Don't buy hammer")
  18. }
  19. </script>
  20.  
  21.  
  22.  
  23. <script id="jsbin-source-javascript" type="text/javascript">var price = 15.00; // price of our hammer
  24. var money = 20.00; // how much money I have
  25.  
  26. if (money >= price) {
  27. console.log("Buy the hammer")
  28. } else {
  29. console.log("Don't buy hammer")
  30. }</script></body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement