Problems with tabulators

I must have the next output in the screen:

FirstLine
             \
SecondLine ThirdLine

const myStr = "FirstLine
\t
\\SecondLine
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/100.0.4896.88 Safari/537.36

Challenge: Escape Sequences in Strings

Link to the challenge:

You can’t insert line breaks into the middle of a string like that. You need to use the newline escape character.

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