interpolation in string nodejs code example
Example 1: string interpolation javascript
const age = 3
console.log(`I'm ${age} years old!`)
Example 2: javascript string interpolation
var animal = "cow";
var str=`The ${animal} jumped over the moon`; // string interpolation