Skip to content

Instantly share code, notes, and snippets.

@arbaz52
Created October 28, 2020 21:25
Show Gist options
  • Save arbaz52/874a23a717276ee023b0ee283be778a9 to your computer and use it in GitHub Desktop.
Save arbaz52/874a23a717276ee023b0ee283be778a9 to your computer and use it in GitHub Desktop.
const _name = "arbaz"
const _age = 21
const fn = (strings, ...vars) => {
console.log("strings: ", strings)
console.log("vars: ", vars)
}
fn`my name is ${_name} and I'm ${_age} years old`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment