Created
July 16, 2015 13:41
-
-
Save wilk/a831c5bb3203ca37c320 to your computer and use it in GitHub Desktop.
ES6 Template String
This file contains 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 sentence = ` | |
multiline string | |
with tabulation | |
and carriage returns | |
` | |
console.log(sentence) | |
let name = 'Mario' | |
let template = `hello ${name}` | |
console.log(template) // hello Mario |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment