View Single Post
Old 02-19-2013, 04:50 AM   PM User | #1
jenbaby12
New to the CF scene

 
Join Date: Feb 2013
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
jenbaby12 is an unknown quantity at this point
If/Else statements not executing!

When I run the code all that runs are the prompts. Both true and false conditions will not execute.

<html>
<head>
<title>My Script</title>
<script type="text/javascript">

confirm("I'm ready to play!");

var age=prompt("What's your age?");
if(age > = 18 ){
console.log ("You may play, but we take no resposibility");
}else{
console.log ("play on");}
console.log("Snow White and Batman were hanging out at the bus stop, waiting to go to the shops. There was a sale on and both needed some new threads. You've never really liked Batman. You walk up to him.");
console.log("Batman glares at you.");
var userAnswer= confirm("Are you feeling lucky, punk?");

if(userAnswer==="yes"){
console.log("Batman hits you very hard. It's Batman and you're you! Of course Batman wins!");
}else{
console.log("You did not say yes to feeling lucky. Good choice! You are a winner in the game of not getting beaten up by Batman.");
}
var feedback=prompt("Please rate this game 1-10");
if (feedback < = 8){
console.log("This is just the beginning of my game empire. Stay tuned for more!");
}else{
console.log("I slaved away at this game and you gave me that score?! The nerve! Just you wait!");
}

</script>
</head>
<body>
</body>
</html>
jenbaby12 is offline   Reply With Quote