Tell us what’s happening:
Your code so far
var\tmyStr\t=\t\"FirstLine\n\t\\SecondLine\nThirdLine\"\t;
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 6.1; Win64; x64) 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/
no spaces between escape sequences or words.
But you still need to use spaces on var assignment.
var myStr = "Your String"
Not sure how much this would spoil… but you dont need var\tmyStr\t=\t\
. delete that and just assign rest of your string to myStr var, like this:
var myStr = "FirstLine\n\t\\SecondLine\nThirdLine\"\t;
Tho… there is still one little thing left for you to figure out why its failing. Check requirements.
ps. there are some extra characters you dont need there.
ps2. … look for them at the end of the string 