Node.js 函数
参考https://www.runoob.com/nodejs/nodejs-function.html
-
Node.js中函数可以作为另一个函数的参数;
-
函数当作参数传递的时候,传递的不是函数的返回值,而是函数对象本身。
例如:function say(word) {
console.log(word);
}function execute(someFunction, value) {
someFunction(value);
}execute(say, "Hello");
匿名函数
// 1.
function(arg1, arg2,arg3...){}
//2.
(arg1, arg2,arg3...)=>{}