Escape Sequences in Strings every time i try to run the test nothing happens

Tell us what’s happening:

every time i try to run the test nothing happens it doesnt even tells me im wrong what can i do

Your code so far


var myStr = FirstLine\n\t\\
    \SecondLine\n
ThirdLine; // 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/67.0.3396.99 Safari/537.36.

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

put everything on the same line like this

FirstLine\n\t\SecondLine\nThirdLine

1 Like