Last active
August 11, 2017 18:45
-
-
Save webstyle/88c5e5b5f77d22e469ad56f73d1f4d15 to your computer and use it in GitHub Desktop.
ES6: String interpolation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let name = 'World'; | |
let greeting = `Hello ${name}`; | |
let content = `Dear ${name}. | |
this is | |
multi line text`; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment