我需要在Node v4.4.2中使用ES6 Template Literals。
设置jsconfig.json
后,我无法正确创建字符串。
知道我在这里缺少什么吗?
var name = "Juan",
job = "flying penguin";
var sentence = 'Hello${name},the ${job}!';
console.log(sentence);
------------- jsconfig.json
{
"compilerOptions": {
"target": "ES6"
}
}
答案 0 :(得分:12)
2件事:
$
这样的事情:
var name = "Juan",
job = "flying penguin";
var sentence = `Hello ${name},the ${job}!`;
console.log(sentence);