Escape sequence

Tell us what’s happening:
i am not understanding what to do

Your code so far


var myStr= FirstLine
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/80.0.3987.122 Safari/537.36.

Challenge: Escape Sequences in Strings

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

you need to create a string, which is a series of characters surrounded by quotes (you don’t have quotes)
And in this string you need to create escape characters, those indicated in the challenge instructions, so that when the string is displayed in the console it show as instructured

so you don’t actually have to put a line break in your string, you put in \n as that is the escaped character that indicate a line break, etc

@akramali

first it needs to be a string like

var myStr = "FirstLine SecondLine ThirdLine"

then use these instructions

FirstLine newline tab backslashSecondLinenewline ThirdLine

from this list

\'	single quote
\"	double quote
\\	backslash
\n	newline
\r	carriage return
\t	tab
\b	word boundary
\f	form feed

hope this helps