Created
February 24, 2015 17:13
-
-
Save jeff-hager-dev/b3c86b914a7ac2688952 to your computer and use it in GitHub Desktop.
Javascript String Repeater
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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