Help with Escape Sequences in Strings

What am I doing wrong here?

Your code so far


var myStr; "FirstLine\n\t\\SecondLine\nThirdLine";


Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/escape-sequences-in-strings

You’re not assigning the string to anything, you should do var myStr =

1 Like

Thanks. I couldn´t see it. :flushed: