function List() { alert('Hello, I am List constructor!'); }; List.prototype = Object.create(Array.prototype, { move: { value: function () { alert('I am custom method "move"!'); } } }); new List().move();