We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 138fb2e commit 3e56ae3Copy full SHA for 3e56ae3
1-js/02-first-steps/05-types/1-string-quotes/solution.md
@@ -5,11 +5,11 @@ Backticks embed the expression inside `${...}` into the string.
5
let name = "Ilya";
6
7
// the expression is a number 1
8
-alert( `hello ${1}` ); // Hello, 1
+alert( `hello ${1}` ); // hello 1
9
10
// the expression is a string "name"
11
-alert( `hello ${"name"}` ); // Hello, name
+alert( `hello ${"name"}` ); // hello name
12
13
// the expression is a variable, embed it
14
-alert( `hello ${name}` ); // Hello, Ilya
15
-```
+alert( `hello ${name}` ); // hello Ilya
+```
0 commit comments