Skip to content

Instantly share code, notes, and snippets.

@wwdboer
Last active December 10, 2015 21:29
Show Gist options
  • Save wwdboer/4495665 to your computer and use it in GitHub Desktop.
Save wwdboer/4495665 to your computer and use it in GitHub Desktop.
JavaScript: Repeat string
String.prototype.repeat = function (num) {
return new Array(num + 1).join(this);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment