Skip to content

Instantly share code, notes, and snippets.

@nerdpruitt
Created March 7, 2013 19:23
Show Gist options
  • Save nerdpruitt/5110953 to your computer and use it in GitHub Desktop.
Save nerdpruitt/5110953 to your computer and use it in GitHub Desktop.
Number.prototype.times = function(string){
var result = '', times = this;
while(times--) {
result += string;
}
return result;
}
document.write((4).times('test'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment