Skip to content

Instantly share code, notes, and snippets.

@xulapp
Created July 17, 2010 16:30
Show Gist options
  • Save xulapp/479625 to your computer and use it in GitHub Desktop.
Save xulapp/479625 to your computer and use it in GitHub Desktop.
function Arraz() {
var self = [];
self.__proto__ = Arraz.prototype;
return self;
}
Arraz.prototype = {
__proto__: Array.prototype,
constructor: Arraz,
last: function() this[this.length - 1]
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment