JavaScript: Function Object

By Xah Lee. Date: . Last updated: .

Function is the value of the property key "Function" of the Global Object .

console.log( window.Function === Function );

Type

Type of Function is a function.

console.log( typeof Function === "function" );

Parent

Parent of Function is Function.prototype.

console.log( Reflect.getPrototypeOf ( Function ) === Function.prototype );

Purpose

Purpose of Function is:

Function Constructor

Function Constructor

Properties

JavaScript Function

BUY
ΣJS
JavaScript in Depth