Skip to content

Instantly share code, notes, and snippets.

@savelee
Last active July 25, 2016 14:05
Show Gist options
  • Save savelee/5fa1aa253d246cf38558e7e0177fe11f to your computer and use it in GitHub Desktop.
Save savelee/5fa1aa253d246cf38558e7e0177fe11f to your computer and use it in GitHub Desktop.
Example Tagged Templates (template functions)
//ES2015
function myTag(arrLiterals){
return arrLiterals[0].toUpperCase();
}
let message = myTag`hello world!`; //HELLO WORLD!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment