From 3e56ae3711ca5c189b7a9f717333a13481c07bff Mon Sep 17 00:00:00 2001 From: cpxPratik Date: Tue, 20 Jun 2017 17:04:33 +0545 Subject: [PATCH] Update solution.md Fix comments --- 1-js/02-first-steps/05-types/1-string-quotes/solution.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 +```