Skip to content

Commit 67be9f1

Browse files
committed
chore(i18n): 1.02.05.1.solution done
1 parent 933e9ab commit 67be9f1

File tree

1 file changed

+4
-4
lines changed
  • 1-js/02-first-steps/05-types/1-string-quotes

1 file changed

+4
-4
lines changed
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+
Backtick mengembed expresi di dalam `${...}` ke dalam string.
33

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

7-
// the expression is a number 1
7+
// expresinya ialah angka 1
88
alert( `hello ${1}` ); // hello 1
99

10-
// the expression is a string "name"
10+
// expresinya ialah nama string
1111
alert( `hello ${"name"}` ); // hello name
1212

13-
// the expression is a variable, embed it
13+
// expresinya ialah variabel, embed dia
1414
alert( `hello ${name}` ); // hello Ilya
1515
```

0 commit comments

Comments
 (0)