Skip to content

Instantly share code, notes, and snippets.

@jrobinsonc
Created August 12, 2015 13:25
Show Gist options
  • Save jrobinsonc/308455e6b8ae71a06f36 to your computer and use it in GitHub Desktop.
Save jrobinsonc/308455e6b8ae71a06f36 to your computer and use it in GitHub Desktop.
Repeat String - Javascript
String.prototype.repeat = function( num )
{
return new Array( num + 1 ).join( this );
}
alert( "string to repeat\n".repeat( 4 ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment