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

0 points
Submitted by MrsCappy
over 9 years

I don't understand why the box shows the correct answer but says I didn't use the correct string

if (‘Wondering when I complete this course!’) {

console.log(‘I completed my first course!’); } else { console.log(‘Not yet!’); }

Answer 54418886282ae3fa9f00010d

0 votes

Permalink

The only instruction is that the result of evaluating the statement is a log to the console of “I finished my first course!”

Your if statement doesn’t really look like a conditional (though for reasons you will soon learn, it is still a boolean, true so will branch to the correct code block). Set that string to the provided text and you should be good to go.

.

points
Submitted by Roy
over 9 years

1 comments

MrsCappy over 9 years

Thank you!!