Template Strings

#Interpolation

const message = `Hello ${name}`

#Multi-line string

const str = `
hello
the world
`

Templates and multiline strings. See: template strings

Comments