Skip to content

Instantly share code, notes, and snippets.

@cowboy
Forked from furf/String.repeat.js
Created March 19, 2010 01:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cowboy/337120 to your computer and use it in GitHub Desktop.
Save cowboy/337120 to your computer and use it in GitHub Desktop.
function repeat(s,n){return Array(n+1).join(s);}
// usage
repeat('x', 3); // returns "xxx"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment