Skip to content

Instantly share code, notes, and snippets.

@KruegerDesigns
Created April 3, 2015 00:11
Show Gist options
  • Save KruegerDesigns/abfd493e4ad48ac4987d to your computer and use it in GitHub Desktop.
Save KruegerDesigns/abfd493e4ad48ac4987d to your computer and use it in GitHub Desktop.
Javascript game I compiled over at codecademy.com
// Check if the user is ready to play!
confirm("Are you ready to play?");
var age = prompt("What's your age");
if(age <= 13) {
console.log("We're sorry, you are too young to play.");
} else {
console.log("Awesome! " + age + " is old enough to play!");
}
var introText = "You are at a Justin Bieber concert, and you hear this lyric 'Lace my shoes off, start racing.'";
console.log(introText);
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.'");
}
var feedback = prompt("Please rate this game from 1-10 on how great it was.");
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