call the function
调用函数
The function to call. 要调用的函数
The arguments to pass to the function. 要传递给函数的参数
The result of the function call. 函数调用的结果
const add = (a, b) => a + binvoke(add, 1, 2)// => 3 Copy
const add = (a, b) => a + binvoke(add, 1, 2)// => 3
call every functions in an array, the remaining parameters are passed in turn
调用数组中的每个函数,剩余参数依次传入
An array of functions. 函数数组
The arguments to pass to each function. 要传递给每个函数的参数
undefined 无返回值
const add = (a, b) => a + binvoke([add, add], 1, 2) Copy
const add = (a, b) => a + binvoke([add, add], 1, 2)
call the function
调用函数