JavaScript: Object Object

By Xah Lee. Date: . Last updated: .

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

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

Type

Type of Object is a function.

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

Parent

Parent of Object is Function.prototype.

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

Purpose

Purpose of Object is:

For tutorial, see Object Overview .

Object Consructor

Object Constructor

Properties

JavaScript Object and Inheritance

BUY ΣJS JavaScript in Depth