←
^
→
JavaScript
Function Properties
Functions are objects, thus they can have properties!
The
length
of a function is the number of arguments it was declared with.
function foo(x,y,z){};
foo.length
José M. Vidal
.
43 of 65