Instructions
Assign the following three lines of text into the single variable myStr using escape sequences.
FirstLine
\SecondLine
ThirdLine
You will need to use escape sequences to insert special characters correctly. You will also need to follow the spacing as it looks above, with no spaces between escape sequences or words.
Here is the text with the escape sequences written out.
“FirstLinenewlinetabbackslashSecondLinenewlineThirdLine”
Here is what i code :
var myStr="FirstLine\n\SecondLine\\rThirdLine";//Change this line
don’t know where am getting it wrong.