Skip to content

Commit 51f93c3

Browse files
author
Aiyo
authored
Merge pull request #12 from aiyodev/master
Data types
2 parents a09b172 + 02b1cab commit 51f93c3

File tree

3 files changed

+111
-111
lines changed

3 files changed

+111
-111
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11

2-
Backticks embed the expression inside `${...}` into the string.
2+
Backtick-ovi ugrade rezultat izraza unutar `${...}` u string/tekst.
33

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

7-
// the expression is a number 1
7+
// izraz je broj 1
88
alert( `hello ${1}` ); // hello 1
99

10-
// the expression is a string "name"
10+
// izraz je string/tekst "name"
1111
alert( `hello ${"name"}` ); // hello name
1212

13-
// the expression is a variable, embed it
13+
// izraz je varijabla, ugradi se u tekst
1414
alert( `hello ${name}` ); // hello Ilya
1515
```
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
importance: 5
1+
važnost: 5
22

33
---
44

5-
# String quotes
5+
# String navodnici
66

7-
What is the output of the script?
7+
Koji je izlaz skripte, šta će se prikazati?
88

99
```js
1010
let name = "Ilya";
@@ -14,4 +14,4 @@ alert( `hello ${1}` ); // ?
1414
alert( `hello ${"name"}` ); // ?
1515

1616
alert( `hello ${name}` ); // ?
17-
```
17+
```

0 commit comments

Comments
 (0)