function.arguments
(as per ES1 spec)
The arguments
property of a function is an object that contains all the arguments passed to the function.
arguments
prop - discouraged since 1997 (and might not work)arguments
in the function body THEN it is an array-like object containing all parameters the function was called witharguments
is defined inside a function THEN this is NOT overriddenfunction.length
(as per ES1 spec)function.bind()
function.length
(with ES5 features)function.length
(with ES6 features)function.name