Template Strings
const appName = 'Wishtack';
const userName = 'Foo';
const greetings = `Hi ${userName},
Welcome to ${appName}!`
console.log(greetings);
// Result:
// Hi Foo,
// Welcome to Wishtack!/* userName is dynamically retrieved from malicious source:
* query string, api, storage etc... */
const userName = '<img src=404 onerror=alert(1)>';
document.body.innerHTML = `<span>Hi ${userName}</span>`Last updated