Guest User

Untitled

a guest
Jan 17th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 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. /* Your Expression Here */
  12. var temp = 75;
  13.  
  14. if (temp > 70) {
  15. console.log("It is hot outside!");
  16. } else if (temp > 50) {
  17. console.log("It is warm outside.");
  18. } else {
  19. console.log("Brr! It's freezing out there!");
  20. }
  21. </script>
  22.  
  23.  
  24.  
  25. <script id="jsbin-source-javascript" type="text/javascript">/* Your Expression Here */
  26. var temp = 75;
  27.  
  28. if (temp > 70) {
  29. console.log("It is hot outside!");
  30. } else if (temp > 50) {
  31. console.log("It is warm outside.");
  32. } else {
  33. console.log("Brr! It's freezing out there!");
  34. }</script></body>
  35. </html>
Add Comment
Please, Sign In to add comment