From 7e3a8ff9b57d9e61c8538925408d991ddb2f6ac6 Mon Sep 17 00:00:00 2001 From: Ovidiu Voicu Date: Wed, 5 Apr 2017 16:48:55 +0300 Subject: [PATCH] Reordered code lines --- 1-js/02-first-steps/05-types/1-string-quotes/solution.md | 6 +++--- 1 file changed, 3 insertions(+), 3 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 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