We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73393ee commit 20b27d1Copy full SHA for 20b27d1
2 files changed
1-js/02-first-steps/05-types/1-string-quotes/solution.md
@@ -1,15 +1,15 @@
1
2
-Backticks embed the expression inside `${...}` into the string.
+Backticks تضمن التعبير داخل `${...}` في داخل النص.
3
4
```js run
5
let name = "Ilya";
6
7
-// the expression is a number 1
+// التعبير هو رقم 1
8
alert( `hello ${1}` ); // hello 1
9
10
-// the expression is a string "name"
+// التعبير هو نص "name"
11
alert( `hello ${"name"}` ); // hello name
12
13
-// the expression is a variable, embed it
+// التعبير هو متغير ، يتضمنه
14
alert( `hello ${name}` ); // hello Ilya
15
```
1-js/02-first-steps/05-types/1-string-quotes/task.md
@@ -4,7 +4,7 @@ importance: 5
# String quotes
-What is the output of the script?
+ما ناتج هذا الكود ؟
```js
0 commit comments