diff --git a/1-js/02-first-steps/05-types/1-string-quotes/solution.md b/1-js/02-first-steps/05-types/1-string-quotes/solution.md index 1e62735b..68a13c15 100644 --- a/1-js/02-first-steps/05-types/1-string-quotes/solution.md +++ b/1-js/02-first-steps/05-types/1-string-quotes/solution.md @@ -5,11 +5,11 @@ Backticks embed the expression inside `${...}` into the string. let name = "Ilya"; // the expression is a number 1 -alert( `hello ${1}` ); // Hello, 1 +alert( `hello ${1}` ); // hello 1 // the expression is a string "name" -alert( `hello ${"name"}` ); // Hello, name +alert( `hello ${"name"}` ); // hello name // the expression is a variable, embed it -alert( `hello ${name}` ); // Hello, Ilya -``` \ No newline at end of file +alert( `hello ${name}` ); // hello Ilya +```