1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-22 19:45:08 +00:00
serenity/Base/home/anon/js/strings.js
2020-03-14 16:00:28 +01:00

12 lines
274 B
JavaScript

var d = "Double quoted string\n";
print(d);
var s = 'Single quoted string\n';
print(s)
var e = "Escaped characters \b \f \n \r \t \v \' \" \\ \n";
print(e)
var u = "Unterminated string
this is not possible in js\n";
print(u);
var u2 = 'This is neither\n
print(u2);