2

Проверить - все ли аргументы переданы функции

function test (foo, bar, qux) {
    return arguments.callee.length === arguments.length;
}

test(1); // false
test(1,2,3); // true
-----------