如何将一个函数的所有参数传递给另一个函数
function a(){
arguments.length;// this is 1
// how do I pass any parameter function a receives into another function
b(what to put here?); // say pass all parameters function a receives to function b
}
a('asdf'); // this is okay
因此,如果函数 a 接收 X 个参数,则每个参数都以相同的顺序传递给函数 b。所以如果 a("1", "2"); , b("1", "2");, 如果 a("1", 2, [3]); , b("1", 2, [3]);.