We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1867718 commit dcb84a3Copy full SHA for dcb84a3
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.
+Backtick-ovi ugrade rezultat izraza unutar `${...}` u string / tekst.
3
4
```js run
5
let name = "Ilya";
6
7
-// the expression is a number 1
+// izraz je broj 1
8
alert( `hello ${1}` ); // hello 1
9
10
-// the expression is a string "name"
+// izraz je string/tekst "name"
11
alert( `hello ${"name"}` ); // hello name
12
13
-// the expression is a variable, embed it
+// izraz je varijabla, ugradi se u tekst
14
alert( `hello ${name}` ); // hello Ilya
15
```
0 commit comments