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 Foundations Strings Escape Characters

Roufa Therrien
Roufa Therrien
10,153 Points

Unclear what is expected

I've tried this test several weeks apart and what is expected is still unclear, given that no specific text is given or suggested for us to insert.

In my case, I created a sentence and put the "\n" characters in the middle to create a second line. However each time I get feedback, I am told to insert "\n".

2 Answers

Dave McFarland
STAFF
Dave McFarland
Treehouse Teacher

The code challenge is just asking you to put the escaped character into the variable--no extra text is required. For example:

var escapedNewLine = "\n";
Roufa Therrien
Roufa Therrien
10,153 Points

Great! Thanks for your quick feedback Dave - it worked!