Skip to content

Instantly share code, notes, and snippets.

@CatTail
Last active August 4, 2016 10:28
Show Gist options
  • Save CatTail/78e5f73ddccc2817ec4f3e6a8052e116 to your computer and use it in GitHub Desktop.
Save CatTail/78e5f73ddccc2817ec4f3e6a8052e116 to your computer and use it in GitHub Desktop.
alternative to python str * number
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