Array.prototype.test = function () {}; alert([1, 2, 3, 4, 5].hasOwnProperty('test')); //false alert(Object.getPrototypeOf([1, 2, 3, 4, 5]).hasOwnProperty('test')); //true