Skip to content

Instantly share code, notes, and snippets.

@sarahquigley
Last active May 2, 2018 20:23
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 sarahquigley/3ad4c6abe8809ecafe53e787ebd31bc6 to your computer and use it in GitHub Desktop.
Save sarahquigley/3ad4c6abe8809ecafe53e787ebd31bc6 to your computer and use it in GitHub Desktop.
Example of ES6 String Interpolation
/* ES5 */
var purpose = 'cat videos';
var message = 'The internet is for ' + purpose + '.';
/* >= ES6 */
var purpose = 'cat videos';
var message = `The internet is for #{purpose}.`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment