forked from PalashLalwani/webDevelopment
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
27 lines (27 loc) · 1.15 KB
/
script.js
File metadata and controls
27 lines (27 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// 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("You are allowed to play but i take no responsibilities");
}
else
{
console.log("PLAY ON!!!!");
}
console.log("You are at a Justin Bieber concert,and you hear this lyrics 'Lace my shoes off, start racing.'");
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 the 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.");}