Articles tagged: Function
Found 19 documents
- Web/JavaScript/Reference/Functions Generally speaking, a function is a "subprogram" that can be called by code external (or ...
- Web/JavaScript/Reference/Global_Objects/Function The Function constructor creates a new Function object. In JavaScript every function is actually ...
- Web/JavaScript/Reference/Global_Objects/Function/apply The apply() method calls a function with a given this value and arguments provided as an array ...
- Web/JavaScript/Reference/Global_Objects/Function/arguments The function.arguments property refers to an an array-like object corresponding to the arguments ...
- Web/JavaScript/Reference/Global_Objects/Function/arity The arity property used to return the number of arguments expected by the function, however, it ...
- Web/JavaScript/Reference/Global_Objects/Function/bind The bind() method creates a new function that, when called, has its this keyword set to the ...
- Web/JavaScript/Reference/Global_Objects/Function/call The call() method calls a function with a given this value and arguments provided individually.
- Web/JavaScript/Reference/Global_Objects/Function/caller The function.caller property returns the function that invoked the specified function.
- Web/JavaScript/Reference/Global_Objects/Function/displayName The function.displayName property returns the display name of the function.
- Web/JavaScript/Reference/Global_Objects/Function/isGenerator The isGenerator() method determines whether or not a function is a generator.
- Web/JavaScript/Reference/Global_Objects/Function/length The length property specifies the number of arguments expected by the function.
- Web/JavaScript/Reference/Global_Objects/Function/name The function.name property returns the name of the function.
- Web/JavaScript/Reference/Global_Objects/Function/prototype The Function.prototype property represents the Function prototype object.
- Web/JavaScript/Reference/Global_Objects/Function/toSource The toSource() method returns a string representing the source code of the object.
- Web/JavaScript/Reference/Global_Objects/Function/toString The toString() method returns a string representing the source code of the function.
- Web/JavaScript/Reference/Operators/function The function keyword can be used to define a function inside an expression.
- Web/JavaScript/Reference/Operators/function* The function* keyword can be used to define a generator function inside an expression.
- Web/JavaScript/Reference/Statements/function* The function* declaration (function keyword followed by an asterisk) defines a generator ...
- Web/XPath/Functions/choose The choose function returns one of the specified objects based on a boolean parameter.