exampe of repeat a string in javscript code example
Example 1: how to repeat a string in javascript
function repeatStringNumTimes(string, times) {
var repeatedString = "";
while (times > 0) {
repeatedString += string;
times--;
}
return repeatedString;
}
repeatStringNumTimes("abc", 3);
Example 2: string repeat javascript
// best implementation
repeatStr = (n, s) => s.repeat(n);