function f(a,b) { return a+b};
function f2() {
return f(arguments)
};
f2(3,5); // "[object Arguments]5"
function a() {
console.log('aguments это: ', typeof arguments);
b(arguments[0], arguments[1]);
b.apply(null, arguments);
return arguments;
}
function b(x,y) {
if(x)console.log('определен X: ', x);
if(y)console.log('определен Y: ', y);
console.log('Типо обработка функции: ', x, y);
}
console.log(a(1,2,3,4,5));