String Repita Codewars JavaScript
function repeatStr (n, s) {
return s.repeat(n);
}
Tense Turkey
function repeatStr (n, s) {
return s.repeat(n);
}