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 Working with Strings Combine Strings

Isabelle Johnson
Isabelle Johnson
1,763 Points

Uncaught syntax error

My computer won't run this code:

const answer = prompt('Which planet is closest to the sun?');

if ( answer.toUpperCase() === 'MERCURY' ) { console.log("That’s correct!"); } else { console.log(“Sorry, that’s incorrect.”); }

What's the issue it is exactly like Guil's? Many thanks

1 Answer

Steven Parker
Steven Parker
230,867 Points

The last log message has word-processing style quote marks (“ ”) :point_left: notice the open and close are different.

But the computer only recognizes programming style marks (", same one for both ends) like you used in the other log message.