Skip to content

Instantly share code, notes, and snippets.

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