Skip to content

Instantly share code, notes, and snippets.

@bingeboy
Created October 28, 2013 19:11
Show Gist options
  • Save bingeboy/7202737 to your computer and use it in GitHub Desktop.
Save bingeboy/7202737 to your computer and use it in GitHub Desktop.
Array Clone Prototype
Array.prototype.clone = function() {
return this.slice(0);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment