1
JavaScriptAdvanced#functions
Backtick strings supporting interpolation with ${}, multi-line text without escapes, and tagged templates for custom processing such as escaping or styling.
const name = 'Anu';
const msg = `Hello ${name},
you have ${2 + 3} messages`;