Skip to content

Instantly share code, notes, and snippets.

@wilk
Created July 16, 2015 13:41
Show Gist options
  • Save wilk/a831c5bb3203ca37c320 to your computer and use it in GitHub Desktop.
Save wilk/a831c5bb3203ca37c320 to your computer and use it in GitHub Desktop.
ES6 Template String
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