JavaScript string interpolation is the process of embedding an expression into part of a string.
const name = "John"; console.log(`Welcome ${name}. You have ${2 * 5} new notifications!`);