Node.js 里回调函数的参数个数和顺序是怎么确定的

2024-11-23 18:38:21
推荐回答(1个)
回答1:

var callback = function(a,b,c) {}
console.log(callback.length) // 会输出3