function A() { for (var a = 0; a < arguments.length; a++) alert(arguments[a]) } function B() { return A.apply(this, arguments) } B(1, 2, 3);