Skip to content

Commit 7e3a8ff

Browse files
author
Ovidiu Voicu
committed
Reordered code lines
1 parent c89d75f commit 7e3a8ff

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)