针对nodejs的function()中参数是函数的问题
function we(call123, something) { something += ' is good' call123(something) } 我想问一下 这个参数 call123 是个函数吗 如果是函数的话 为什么没经过定义呢
function we(call123, something) { something += ' is good' call123(something) } 我想问一下 这个参数 call123 是个函数吗 如果是函数的话 为什么没经过定义呢
2016-07-13
是函数,没有定义的没有写吧,
//可以写具名函数调用
function we(call123, something) {
something += ' is good'
call123(something)
}
function call123(something) {
console.log(something);
}
we(call123, "this");
//或者匿名函数调用
function we(call123, something) {
something += ' is good'
call123(something)
}
we(function (something) {
console.log(something);
}, "this");
举报