string interpolation in javascript

JavaScript
var animal = "cow";
var str=`The ${animal} jumped over the moon`; // string interpolationconst number = 42;
const message = `The number is ${number}`;

message; // => 'The number is 42'
Source

Also in JavaScript: