AvailabilityJavaScript 1.0; JScript 1.0; ECMAScript v1 Inherits from/OverridesInherits from Object Synopsisfunction functionname(argument_name_list) // Function definition statement { body } function (argument_name_list) { body } // Unnamed function literal; JavaScript 1.2 functionname(argument_value_list) // Function invocation Constructornew Function(argument_names..., body) // JavaScript 1.1 and later Arguments
ReturnsA newly created Function object. Invoking the function executes the JavaScript code specified by body. Throws
Properties
Methods
DescriptionA function is a fundamental data type in JavaScript. Chapter 7 explains how to define and use functions, and Chapter 8 covers the related topics of methods, constructors, and the prototype property of functions. See those chapters for complete details. Note that although function objects may be created with the Function( ) constructor described here, this is not efficient, and the preferred way to define functions, in most cases, is with a function definition statement or a function literal. In JavaScript 1.1 and later, the body of a function is automatically given a local variable, named arguments, that refers to an Arguments object. This object is an array of the values passed as arguments to the function. Don't confuse this with the deprecated arguments[] property listed above. See the Arguments reference page for details. See AlsoArguments; Chapter 7; Chapter 8 |