Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created May 30, 2017 10:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/bcdfdb2f9896d5746ce1c1964b6d622d to your computer and use it in GitHub Desktop.
Save codecademydev/bcdfdb2f9896d5746ce1c1964b6d622d to your computer and use it in GitHub Desktop.
Codecademy export
// Check if the user is ready to play!
var age = prompt("What's your age");
if (age <13) {
console.log("You're not allowed to play this game. We take no responsibility");
}
else {
console.log("Welcome. Enjoy our world")
}
confirm("I am ready to play!");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment