Skip to content

Instantly share code, notes, and snippets.

@lackneets
Created June 23, 2014 05:02
Show Gist options
  • Save lackneets/bba14f1a70f0dd85c540 to your computer and use it in GitHub Desktop.
Save lackneets/bba14f1a70f0dd85c540 to your computer and use it in GitHub Desktop.
function MyArray() {
var parent = { // Remember the Origional-methods
push: this.push
}
this.push = function (element) { // Override
// Do my actions
return parent.push.apply(this, arguments);
}
}
// MyArray inherits from Array
MyArray.prototype = Object.create(Array.prototype);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment