Well i have a long string in double quotes
var Variable = "Really Long ...... String"
I would want to do this
var Variable = "Really
Long
......
String"
Currently I do this
var Variable = "Really\n\
Long\n\
......\n\
String"
It works correctly across all browsers. But is it the correct way to do it?
\nrequired? The 1st and 3rd are not the same string.\nand without them.