Skip to content

Instantly share code, notes, and snippets.

@pbzona
Last active September 2, 2017 23:32
Show Gist options
  • Save pbzona/6f8791d59fe9c466bb5adc858cb4d442 to your computer and use it in GitHub Desktop.
Save pbzona/6f8791d59fe9c466bb5adc858cb4d442 to your computer and use it in GitHub Desktop.
Template tagging example 2
function templateTag(strings, personName) {
return strings[0] + personName;
}
var name = 'Phil'
var someString = templateTag`My name is ${name}`
console.log(someString);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment