Last active
August 4, 2016 10:28
-
-
Save CatTail/78e5f73ddccc2817ec4f3e6a8052e116 to your computer and use it in GitHub Desktop.
alternative to python str * number
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
function repeat(str, count) { | |
return (new Array(count + 1)).join(str) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment