Created
November 10, 2013 04:51
-
-
Save ToreySound/7393976 to your computer and use it in GitHub Desktop.
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
var answer = prompt("You! What is the value of 2 + 2?", ""); | |
if (answer == "4") | |
alert("You must be a genius or something."); | |
else if (answer == "3" || answer == "5") | |
alert("Almost!"); | |
else | |
alert("You're an embarrassment."); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment