我开始使用Node,我看到=>
用于匿名函数。我之前没有在JavaScript中找到过这个。是Node.js具体吗?这个语法的名称是什么?我搜索但找不到任何东西。
以下是一个例子。
process.on('exit', (code) => {
// do *NOT* do this
setTimeout(() => {
console.log('This will not run');
}, 0);
console.log('About to exit with code:', code);
});
答案 0 :(得分:0)
这是ES6箭头功能。
https://strongloop.com/strongblog/an-introduction-to-javascript-es6-arrow-functions/
var sum = () => 1 + 2;
// effectively equivalent to:
var sum = function() {
return 1 + 2;
};