Template literals (template strings) - variable interpolation
let name = 'Kate'
console.log(`Hello ${name}`)
$ node examples/basic/template_literals.js
Hello Kate
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
let name = 'Kate'
console.log(`Hello ${name}`)
$ node examples/basic/template_literals.js
Hello Kate