Skip to content

Instantly share code, notes, and snippets.

@kirnovak
Created May 31, 2014 10:48
Show Gist options
  • Save kirnovak/569728c7a06fd176d201 to your computer and use it in GitHub Desktop.
Save kirnovak/569728c7a06fd176d201 to your computer and use it in GitHub Desktop.
String.prototype.times = function(n) {
return Array.prototype.join.call({length: n+1}, this);
};
var star = '<div class="star" />'.times(12);
$('body').append(star);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment