Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript JavaScript Basics Making Decisions in Your Code with Conditional Statements Boolean Values

Not showing as console log saying error with brackets?

I've copied what Guil has done and mine won't load on the browser, in the console log is just says: if () { console.log('The condition is true.'); } else { console.log('The condition is false.'); }

What I have:

let correctGuess = false; const number = 2; const guess = prompt('Guess a number between 1 and 10.');

if ( +guess === number ) { correctGuess = true; }

if ( correctGuess === true ) { console.log("You guessed the number!"); } else { console.log(Sorry. The number was ${number}.); }

I've combed through it multiple times, what am I missing?

1 Answer

Mark Casavantes
Mark Casavantes
2,880 Points

Hello Deanna,

You are very close. I changed your second console.log statement to include backticks and put your semi colon after your }; on the last line.

I hope this is helpful.