Skip to content

Instantly share code, notes, and snippets.

@yshnb
Created May 25, 2013 16:22
Show Gist options
  • Select an option

  • Save yshnb/5649630 to your computer and use it in GitHub Desktop.

Select an option

Save yshnb/5649630 to your computer and use it in GitHub Desktop.
// repeat input text
var repeat = function(text, times) {
return (new Array(times+1)).join(text);
};
// example
console.log(repeat("Hello, world!", 10));
//Hello, world!Hello, world!Hello, world!Hello, world!Hello, world!Hello, world!Hello, world!Hello, world!Hello, world!Hello, world!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment