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