nodejs es6 using template strings code example
Example: es6 string templates
const subject = 'world';
console.log(`hello ${subject}`);
// output = 'hello world'
const subject = 'world';
console.log(`hello ${subject}`);
// output = 'hello world'