string introplation node code example
Example 1: node js variable inside string
var my_name = 'John';
var s = `hello ${my_name}, how are you doing`;
console.log(s); // prints hello John, how are you doing
Example 2: javascript string interpolation
var animal = "cow";
var str=`The ${animal} jumped over the moon`; // string interpolation