Skip to content

Instantly share code, notes, and snippets.

@webstyle
Last active August 11, 2017 18:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save webstyle/88c5e5b5f77d22e469ad56f73d1f4d15 to your computer and use it in GitHub Desktop.
Save webstyle/88c5e5b5f77d22e469ad56f73d1f4d15 to your computer and use it in GitHub Desktop.
ES6: String interpolation
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