JavaScript Template Literals

Description

Template literals[fn:literals] can span lines and also embed other values. ${} in a template literal will be computed and converted to a [JavaScript Strings](JavaScript Strings).

Syntax

console.log(`This is a
backtick quotes string`)
console.log(`half of 100 is ${100 / 2}`)

Footnotes

[fn:literals]https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template\_literals