Created
April 16, 2017 16:59
-
-
Save mwq27/3d9985fb07af169e11a1baf7aada6e5a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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