nathan15

Offending code

Apr 8th, 2014
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Array.prototype.remove = function(from, to) {
  2.   var rest = this.slice((to || from) + 1 || this.length);
  3.   this.length = from < 0 ? this.length + from : from;
  4.   return this.push.apply(this, rest);
  5. };
Advertisement
Add Comment
Please, Sign In to add comment