9. Template Literal and Delimiters
ES6 introduces an easier way to add interpolations which are evaluated automatically.
`${ … }`
is used for rendering the variables.`
Backtick is used as delimiter.
let user = 'Kevin';
console.log(`Hi ${user}!`); // Hi Kevin!