We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e104997 + 7e3a8ff commit 5a1c12dCopy full SHA for 5a1c12d
1-js/02-first-steps/05-types/1-string-quotes/solution.md
@@ -7,9 +7,9 @@ let name = "Ilya";
7
// the expression is a number 1
8
alert( `hello ${1}` ); // Hello, 1
9
10
-// the expression is a variable, embed it
11
-alert( `hello ${name}` ); // Hello, Ilya
12
-
13
// the expression is a string "name"
14
alert( `hello ${"name"}` ); // Hello, name
+
+// the expression is a variable, embed it
+alert( `hello ${name}` ); // Hello, Ilya
15
```
0 commit comments