Skip to content

Instantly share code, notes, and snippets.

@mneedham
Created February 22, 2010 00:04
Show Gist options
  • Save mneedham/310627 to your computer and use it in GitHub Desktop.
Save mneedham/310627 to your computer and use it in GitHub Desktop.
Number.prototype.times = function(f) {
for(var i =0; i < this; ++i) {
f();
}
return this;
};
10.times(function() { console.log("mark"); });
> SyntaxError: missing ; before statement
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment