string ulang codewars javascript

function repeatStr (n, s) {
  return s.repeat(n);
}
Tense Turkey