chaîne répétée codewars javascript
function repeatStr (n, s) {
return s.repeat(n);
}
Tense Turkey
function repeatStr (n, s) {
return s.repeat(n);
}