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 (Retired) Working With Numbers Numbers and Strings

var question = Prompt ('Why does not my prompt command appear?');

var name = prompt('What's your name?'); var age = prompt('What is your age?');

var message = "Your name is " + name + ", and you are " + age + "years old"; alert(message);

1 Answer

I figured it out! I was confused on which slash command to use to cancel out the apostrophe.

Ali Abbas
Ali Abbas
2,097 Points

Hey Carlos Marin,

The other thing you could do is use the double quotation marks which would allow you to use the apostrophe without having to use the ' \ ' to escape. So, e.g. ("What's your name?"), would've been fine as well.