Skip to main content
0:00est. 2 min

Chapter 55- Everything is an Object (or a primitive)

Notes

Example 1 :
var a = { };
var b = function() { };
var c = [];
//Check following in console
a.__proto__ // Object
b.__proto__ // function Empty(){}
c.__proto__ // []

//Check base prototype of every var is object
a.__proto__.__proto__ //Object
b.__proto__.__proto__ //Object
c.__proto__.__proto // Object