mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 14:25:08 +00:00
7 lines
197 B
JavaScript
7 lines
197 B
JavaScript
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
|