blob: d707bf090d3efa8124464ec632db5465a4f0ba02 (
plain)
1
2
3
4
5
6
7
|
var d = "Double quoted string";
var s = 'Single quoted string';
var e = "Escaped characters \n \" \t \\"
var u = "Unterminated string
this is not possible in js"
var u2 = 'This is neither
|