Skip to content

Instantly share code, notes, and snippets.

@NoMan2000
Created November 14, 2014 19:35
Show Gist options
  • Save NoMan2000/85c043874408da17807d to your computer and use it in GitHub Desktop.
Save NoMan2000/85c043874408da17807d to your computer and use it in GitHub Desktop.
Empty an array
Array.prototype.empty = function empty() {
while (this.length > 0) {
this.pop();
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment