Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save svahora/c7d778d26124ee2d48d4 to your computer and use it in GitHub Desktop.
Save svahora/c7d778d26124ee2d48d4 to your computer and use it in GitHub Desktop.
function repeat(str, num) {
var newStr = "";
var i;
for (i = 0; i < num; i++) {
newStr += str;
} return newStr;
}
repeat('abc', 3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment