summaryrefslogtreecommitdiff
path: root/Base/home/anon/js/strings.js
blob: 74cf39785d981392b78f85366985ee6ec3b4c257 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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);