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

Keith Griffin
Keith Griffin
4,833 Points

More efficient way of writing the code?

I get that this is supposed to demonstrate boolean values but it's hard for me to wrap my head around when there is a more efficient way of writing the code. isn't this better?

const number = 6; const guess = prompt("Guess a number between 1 and 10");

if (+guess === number) { console.log("You guessed the right number!"); } else{ console.log(Sorry the right answer is ${number}) }

1 Answer

Hi Keith -

Yes, the code you wrote is more concise. As you noted, the purpose of this particular video is to teach about Boolean values, and that was why the code was written the way it was.

Make sure to use your template literals and remember your semicolons, though. Your code as is will throw an error. Try re-writing the code in the else statement like this:

console.log(`Sorry the right answer is ${number}`);

Happy coding!