ある関数のすべてのパラメーターを別の関数に渡す方法
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 に渡されます。したがって、if a("1", "2"); , b("1", "2");, if a("1", 2, [3]); , b("1", 2, [3]);.