Template Literals
const firstName = 'Levin';
const job = 'programmer';
const birthYear = 2007;
const levinNew = `I'm ${firstName}, a ${2023 - birthYear} year old ${job}!`;Last updated
const firstName = 'Levin';
const job = 'programmer';
const birthYear = 2007;
const levinNew = `I'm ${firstName}, a ${2023 - birthYear} year old ${job}!`;Last updated