Basic JavaScript - Escape Sequences in Strings

The text FirstLine should be followed by the code for newline, tab, and backslash.

The text SecondLine should be followed by the code for newline.

The text ThirdLine should just be at the end of the string.

It should be one big string all connected with no spaces.


Example:

const myStr = "\tProduct\nPizza\tPrice\t10\\$";
console.log(myStr)
	Product
Pizza	Price	10\$