This forum is now read-only. Please use our new forums! Go to forums

0 points
Submitted by wnschroe
over 9 years

Ahh my mind is blanking out on 28/28

prompt(“did you learn JavaScript?”) if console.log(“cool”) } else console.log(“ok learn it”) }

I thought this would work by having the pop up saying Did You Learn JavaScript, then i would answer yes and the program would say cool. I’m pretty sure I just forgot something because I did it on the earlier exercises .

Answer 53ced14a548c35882f000420

0 votes

Permalink

Hello. You should get back to previous exercises, because your whole code is wrong. I corrected it, and added few comments from me:

// store user answer in variable
var userAnswer = prompt("did you learn JavaScript?");
// check if userAnswer is equal to yes
if (userAnswer === "yes") {
    // print to console string from instructions
    console.log("I finished my first course!");
} else {
    console.log("ok learn it")
}
points
Submitted by Maciej Wiercioch
over 9 years