In JavaScript, template literals are a fantastic way to interpolate dynamic values into a string. They're JavaScript's version of Python's f-strings. For example:
const shadeOfRed = 101;
console.log(`The shade is ${shadeOfRed}`);
// The shade is 101
Template literals must start and end with a backtick, and anything inside of the dollar-sign bracket enclosure is automatically cast to a string.
Using the template literals and string formatting illustrated above, create a new variable msg and assign it the string:
Hi NAME, your open rate is OPENRATE percent
NAME with the variable name.OPENRATE with the variable openRate.