I need help....im stuck

im stuck …please help:
Describe your issue in detail here.

Your code so far


var myStr;"FirstLine
\\SecondLine\\\rThirdLine";// Change this line

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36

Challenge: Escape Sequences in Strings

Link to the challenge:

To start,

I bet you meant to use an = sign instead of a ;

Also, you can’t break a string over multiple lines like that.

Hi @brigitte !

Welcome to the forum!

Your starting code should be this

var myStr=""; // Change this line

because as mentioned this is not valid javascript

var myStr;"FirstLine\n\\SecondLine\\\rThirdLine";

this is my string…where did i go wrong

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

You still have this semicolon here where we told you to remove it and use an equal sign =.

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.