Skip to content

Instantly share code, notes, and snippets.

@gvn
Created August 15, 2012 20:48
Show Gist options
  • Save gvn/3363503 to your computer and use it in GitHub Desktop.
Save gvn/3363503 to your computer and use it in GitHub Desktop.
JS Prototype Fun
Function.prototype.times = function (times) {
while (times) {
this.call();
times--;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment