console.log(Object.prototype.hasOwnProperty('parseInt'));  // false
console.log(Number.prototype.hasOwnProperty('parseInt'));  // false
Where is parseInt defined if not on the default prototype object (Object.prototype), the prototype object from which all JS objects inherit?
 
    