Skip to content

Commit 5a1c12d

Browse files
authored
Merge pull request iliakan#487 from odv/en
Reordered code lines
2 parents e104997 + 7e3a8ff commit 5a1c12d

File tree

1 file changed

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

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ let name = "Ilya";
77
// the expression is a number 1
88
alert( `hello ${1}` ); // Hello, 1
99

10-
// the expression is a variable, embed it
11-
alert( `hello ${name}` ); // Hello, Ilya
12-
1310
// the expression is a string "name"
1411
alert( `hello ${"name"}` ); // Hello, name
12+
13+
// the expression is a variable, embed it
14+
alert( `hello ${name}` ); // Hello, Ilya
1515
```

0 commit comments

Comments
 (0)