Skip to content

Instantly share code, notes, and snippets.

@jeff-hager-dev
Created February 24, 2015 17:13
Show Gist options
  • Save jeff-hager-dev/b3c86b914a7ac2688952 to your computer and use it in GitHub Desktop.
Save jeff-hager-dev/b3c86b914a7ac2688952 to your computer and use it in GitHub Desktop.
Javascript String Repeater
String.prototype.repeat = string.prototype.repeat || function (rptCnt) {
return new Array(rptCnt).join(this);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment