Skip to content

Instantly share code, notes, and snippets.

@ceaksan
Created September 18, 2015 14:21
Show Gist options
  • Save ceaksan/849d9ac697efd59f2bd2 to your computer and use it in GitHub Desktop.
Save ceaksan/849d9ac697efd59f2bd2 to your computer and use it in GitHub Desktop.
function repeat(str, num) {
var result = '';
for(var i = 0; num > i; i++){ result += str; }
return result;
}
repeat("abc", 3, "");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment