Skip to content

Instantly share code, notes, and snippets.

@stevelippert
Created February 13, 2014 20:27
Show Gist options
  • Save stevelippert/8983163 to your computer and use it in GitHub Desktop.
Save stevelippert/8983163 to your computer and use it in GitHub Desktop.
Clearing an Array in JavaScript
if (!Array.prototype.clear){
Array.prototype.clear = function() {
while (this.length > 0) {
this.pop();
}
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment