mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-13 14:42:51 +00:00
Base: Move "js" and "little" HackStudio projects into ~/Source/
This commit is contained in:
parent
bc615572a9
commit
db450dbc44
Notes:
sideshowbarker
2024-07-19 04:15:46 +09:00
Author: https://github.com/awesomekling
Commit: db450dbc44
28 changed files with 1 additions and 1 deletions
12
Base/home/anon/Source/js/strings.js
Normal file
12
Base/home/anon/Source/js/strings.js
Normal file
|
@ -0,0 +1,12 @@
|
|||
var d = "Double quoted string\n";
|
||||
console.log(d);
|
||||
var s = 'Single quoted string\n';
|
||||
console.log(s)
|
||||
var e = "Escaped characters \b \f \n \r \t \v \' \" \\ \n";
|
||||
console.log(e)
|
||||
var u = "Unterminated string
|
||||
this is not possible in js\n";
|
||||
console.log(u);
|
||||
|
||||
var u2 = 'This is neither\n
|
||||
console.log(u2);
|
Loading…
Add table
Add a link
Reference in a new issue