All javascript objects inherit properties and methods from a prototype.
Date object inherits from Date.prototype
Date
Date.prototype
Array object inherits from Array.prototype
Array
Array.prototype
The Object.prototype is on the top of the prototype inheritance chain.
Object.prototype
Last updated 4 years ago