I need to use ES6 Template Literals in Node v4.4.2.
After setting jsconfig.json
I am not able to create my string properly.
Any idea what am I missing here?
var name = "Juan",
job = "flying penguin";
var sentence = 'Hello${name},the ${job}!';
console.log(sentence);
------------- jsconfig.json
{
"compilerOptions": {
"target": "ES6"
}
}