Skip to content

Instantly share code, notes, and snippets.

@mwq27
Created April 16, 2017 16:59
Show Gist options
  • Save mwq27/3d9985fb07af169e11a1baf7aada6e5a to your computer and use it in GitHub Desktop.
Save mwq27/3d9985fb07af169e11a1baf7aada6e5a to your computer and use it in GitHub Desktop.
function foo(strings, ...values) {
console.log("Strings - ", strings);
console.log("Values - ", values);
}
const name = 'marques';
foo`My name is ${name}.`;
// Strings - ["My name is ", "."]
// Values - ["marques"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment