Skip to content

Instantly share code, notes, and snippets.

@vyspiansky
Created April 17, 2014 09:58
Show Gist options
  • Save vyspiansky/10970216 to your computer and use it in GitHub Desktop.
Save vyspiansky/10970216 to your computer and use it in GitHub Desktop.
JavaScript: str_repeat analogue
// Source: http://goo.gl/xMnHZj
function str_repeat($string, $multiplier) {
return new Array($multiplier+1).join($string)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment