|
Functions in JavaScript is actually an object. Therefore any created function created using the "function" declaration will have the properties of a function. These properties are:
Argument - An array of arguments passed to the function. This is an array object which has a property of length which enables the programmer to tell how many arguments (or variables) are passed to the function.
Caller - The name of the function that called the function.
Prototype - Used to make more properties.
|