'=>'在节点函数中

时间:2016-05-24 17:37:56

标签: javascript node.js

我开始使用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);
});

1 个答案:

答案 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;
};