June 1999
Intermediate to advanced
540 pages
21h 39m
English
Function — a JavaScript function
Core JavaScript 1.0; enhanced in JavaScript 1.1 and 1.2
// Function definition statement function functionname(argument_name_list) { body } // Unnamed function literal; JavaScript 1.2 function (argument_name_list ) { body} // Function invocation functionname(argument _value_list)
// JavaScript 1.1 and later new Function(argument_names,body)
Arguments passed to a function. JavaScript 1.0; ECMA-262; deprecated in favor of the Arguments object.
The number of declared arguments. Navigator 4, with
LANGUAGE="JavaScript1.2".
The function that called this one.
The number of declared arguments. JavaScript 1.1; ECMA-262.
The prototype for a class of objects. JavaScript 1.1.
Invoke a function as a method of an object. Navigator 4.
Convert a function to a string. JavaScript 1.0; ECMA-262.
Read now
Unlock full access