Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created April 30, 2016 04:04
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/aa4e50ab042e770246db0f49e8c728d4 to your computer and use it in GitHub Desktop.
Save codecademydev/aa4e50ab042e770246db0f49e8c728d4 to your computer and use it in GitHub Desktop.
Codecademy export
// Check if the user is ready to play!
confirm("Ready to play?")
var age = prompt("Enter your age");
if(age<14){
console.log("I take no responsibility for your deliquency");
}else{
console.log("OK! You are " + age +" years old, so you say.");
}
//begin the game: descipr the scene:
var intro = "You are at a Justin Bieber concert, and you hear this lyric 'Lace my shoes off, start racing.'";
console.log(intro);
console.log("Suddenly, Bieber stops and says, 'Who wants to race me?'");
var userAnswer = prompt("Do you want to race Bieber on stage?");
if(userAnswer === "yes"){
console.log("You and Bieber start racing. It's neck and neck! You win by a shoelace!");
}else{
console.log("Oh no! Bieber shakes his head and sings 'I set a pace, so I can race without pacing.'");
}
//get user feedback
var feedback = prompt("Rate the game from 0 to 10");
if(feedback > 8){
console.log("Thank you! We should race at the next concert!");
}else{
console.log("I'll keep practicing coding and racing");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment