Skip to content

Instantly share code, notes, and snippets.

@wulucxy
Created October 6, 2021 15:37
Show Gist options
  • Save wulucxy/786869c4dd153258594aad83fdf7fd07 to your computer and use it in GitHub Desktop.
Save wulucxy/786869c4dd153258594aad83fdf7fd07 to your computer and use it in GitHub Desktop.
javascript
function tag(static, ...tags) {
return static.reduce((all, part, index) => {
return all + tags[index - 1] + part
})
}
var name = 'test'
var emotion = 'thrilled'
const text = tag`hello, ${name}, I am ${ emotion } to meet you`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment