tag a template literal s code example
Example: javascript string interpolation
var animal = "cow";
var str=`The ${animal} jumped over the moon`; // string interpolation
var animal = "cow";
var str=`The ${animal} jumped over the moon`; // string interpolation