Skip to content

Instantly share code, notes, and snippets.

@Cycymomo
Created January 30, 2014 08:14
Show Gist options
  • Save Cycymomo/8704479 to your computer and use it in GitHub Desktop.
Save Cycymomo/8704479 to your computer and use it in GitHub Desktop.
stringRepeat.js : Repeating strings efficiently
function stringRepeat(str, num) {
var result = '';
for (num |= 0; num > 0; num >>>= 1, str += str) {
if (num & 1) {
result += str;
}
}
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment