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 cca7eecd..1e62735b 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 @@ -7,9 +7,9 @@ let name = "Ilya"; // the expression is a number 1 alert( `hello ${1}` ); // Hello, 1 -// the expression is a variable, embed it -alert( `hello ${name}` ); // Hello, Ilya - // the expression is a string "name" alert( `hello ${"name"}` ); // Hello, name + +// the expression is a variable, embed it +alert( `hello ${name}` ); // Hello, Ilya ``` \ No newline at end of file