Created
May 14, 2015 12:14
-
-
Save stephen-maina/ce3ebc68531370b0e715 to your computer and use it in GitHub Desktop.
javascript
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
// Check if the user is ready to play! | |
confirm("Are you ready to play?"); | |
var age=prompt("What is your age"); | |
if(age<13){ | |
console.log("You can play this game but the developers take no responsibility for your actions ") | |
}else{ | |
console.log("Welcome"); | |
} | |
console.log("You are at a Justin Bieber concert, and you hear this lyric 'Lace my shoes off, start racing.'"); | |
console.log("Suddenly, Bieber stops and says, 'Who wants to race me?'"); | |
var userAnswer=confirm("Do you want to race Beiber on stage?"); | |
if(userAnswer){ | |
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 my game out of 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