write a JS program that repeats a given string n number of times. Write a JS function that takes two arguments: a string and a positive number n. This function repeats the given string n number of times and returns the result. code example

Example 1: string repeat javascript

// best implementation
repeatStr = (n, s) => s.repeat(n);

Example 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);