Skip to content

Commit 4cc0963

Browse files
committed
data types
1 parent 704cb8c commit 4cc0963

3 files changed

Lines changed: 99 additions & 98 deletions

File tree

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11

2-
Backticks embed the expression inside `${...}` into the string.
2+
Backticks تضمن التعبير داخل `${...}` في داخل النص.
33

44
```js run
55
let name = "Ilya";
66

7-
// the expression is a number 1
7+
// التعبير هو رقم 1
88
alert( `hello ${1}` ); // hello 1
99

10-
// the expression is a string "name"
10+
// التعبير هو نص "name"
1111
alert( `hello ${"name"}` ); // hello name
1212

13-
// the expression is a variable, embed it
13+
// التعبير هو متغير ، يتضمنه
1414
alert( `hello ${name}` ); // hello Ilya
1515
```

1-js/02-first-steps/05-types/1-string-quotes/task.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ importance: 5
44

55
# String quotes
66

7-
What is the output of the script?
7+
ما ناتج هذا الكود ؟
88

99
```js
1010
let name = "Ilya";

0 commit comments

Comments
 (0)