Created
January 27, 2018 08:12
-
-
Save tshivers/669d4e2c537b8069d86f674c38a0e251 to your computer and use it in GitHub Desktop.
JS Bin // source http://jsbin.com/luyuvud
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> | |
| <script id="jsbin-javascript"> | |
| /* Your Expression Here */ | |
| var temp = 68; | |
| if (temp > 70) { | |
| console.log("It is hot outside!"); | |
| } else if (temp > 50) { | |
| console.log("It is warm outside."); | |
| } else { | |
| console.log("Brr! It's freezing out there!"); | |
| } | |
| </script> | |
| <script id="jsbin-source-javascript" type="text/javascript">/* Your Expression Here */ | |
| var temp = 68; | |
| if (temp > 70) { | |
| console.log("It is hot outside!"); | |
| } else if (temp > 50) { | |
| console.log("It is warm outside."); | |
| } else { | |
| console.log("Brr! It's freezing out there!"); | |
| } | |
| </script></body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Your Expression Here */ | |
| var temp = 68; | |
| if (temp > 70) { | |
| console.log("It is hot outside!"); | |
| } else if (temp > 50) { | |
| console.log("It is warm outside."); | |
| } else { | |
| console.log("Brr! It's freezing out there!"); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment