On May 17, 11:35 am, Aaron Newton <[email protected]> wrote: > All of the native prototype methods are available as generics.
It sounds like the decision is already made. But I think that making copies of all of these functions is not a good idea. It's inconsistent with the design of JavaScript's native objects; one is expected to use Array.prototype.slice.call(arrayLikeObject, from, to) rather than Array.slice(arrayLikeObject, from, to). Thomas
