Template literal (template string)

Submitted by wullaski on

I do this thing where I use a thing for years and then forget the name of that thing. This is one of those things.

const foo = "Template literals"
const biz = "cool"
`${foo} are ${biz}`

> Template literals are cool