alternative interpolation js code example
Example 1: javascript string interpolation
var animal = "cow";
var str=`The ${animal} jumped over the moon`; // string interpolation
Example 2: string interpolation in javascript
const number = 42;
const message = `The number is ${number}`;
message; // => 'The number is 42'