Skip to content

Instantly share code, notes, and snippets.

  • Save srkama/febcdf43db4b0a28d7c7 to your computer and use it in GitHub Desktop.
Save srkama/febcdf43db4b0a28d7c7 to your computer and use it in GitHub Desktop.
http://www.freecodecamp.com/srkama 's solution for Bonfire: Repeat a string repeat a string
// Bonfire: Repeat a string repeat a string
// Author: @srkama
// Challenge: http://www.freecodecamp.com/challenges/bonfire-repeat-a-string-repeat-a-string?solution=function%20repeat(str%2C%20num)%20%7B%0A%20%20%2F%2F%20repeat%20after%20me%0A%20%20if(num%20%3C%200)%0A%20%20%20%20%7B%0A%20%20%20%20%20%20return%20%22%22%3B%0A%20%20%20%20%7D%0A%20%20resultStr%3D%22%22%3B%0A%20%20for(i%3D1%3Bi%3C%3Dnum%3Bi%2B%2B)%20%7B%0A%20%20%20%20resultStr%3DresultStr.concat(str)%3B%0A%20%20%7D%0A%20%20return%20resultStr%3B%0A%7D%0A%0Arepeat(%22abc%22%2C%203)%3B%0A
// Learn to Code at Free Code Camp (www.freecodecamp.com)
function repeat(str, num) {
// repeat after me
if(num < 0)
{
return "";
}
resultStr="";
for(i=1;i<=num;i++) {
resultStr=resultStr.concat(str);
}
return resultStr;
}
repeat("abc", 3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment