Answers for "how to return a string x amount in javascript without using . repeat"

2

how to return a string x amount in javascript without using . repeat

function repeatStringNumTimes(string, times) {
  var repeatedString = "";
  while (times > 0) {
    repeatedString += string;
    times--;
  }
  return repeatedString;
}
repeatStringNumTimes("abc", 3);
Posted by: Guest on June-10-2020

Code answers related to "how to return a string x amount in javascript without using . repeat"

Code answers related to "Javascript"

Browse Popular Code Answers by Language