Merge pull request #487 from odv/en

Reordered code lines
This commit is contained in:
Ilya Kantor 2017-04-06 12:24:51 +03:00 committed by GitHub
commit 5a1c12dd50

View file

@ -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
```