Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
8
Task/Literals-String/JavaScript/literals-string-1.js
Normal file
8
Task/Literals-String/JavaScript/literals-string-1.js
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
(function () {
|
||||
return "αβγδ 中间来点中文 🐫 אבגד"
|
||||
})();
|
||||
|
||||
|
||||
(function() {
|
||||
return "\u03b1\u03b2\u03b3\u03b4 \u4e2d\u95f4\u6765\u70b9\u4e2d\u6587 \ud83d\udc2b \u05d0\u05d1\u05d2\u05d3";
|
||||
})();
|
||||
5
Task/Literals-String/JavaScript/literals-string-2.js
Normal file
5
Task/Literals-String/JavaScript/literals-string-2.js
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
const multiLine = `string text line 1
|
||||
string text line 2`
|
||||
const expression = `expressions are also supported, using \$\{\}: ${multiLine}`
|
||||
|
||||
console.log(expression)
|
||||
Loading…
Add table
Add a link
Reference in a new issue