How to interpolate in JavaScript

Strings
By Jad Joubran · 
Last updated Feb 26, 2024
const name = "Sam";

console.log(`Welcome ${name}.
You have ${2 * 5} new notifications!`);
Welcome Sam.
You have 10 new notifications!