Last updated 2 years ago
⭐️ ES6 (2015) feature
string interpolation
`${a} + ${b} = ${a + b}`
multi-line string
let html = ` <div> <span>Some HTML here</span> </div> `;
tagged template
Template literals
String.raw()
Creating multiline strings in JavaScript
grammar