repeat javascript code example
Example 1: js multiply string
let myString = 'test';
myString.repeat(3);
Example 2: js string times
let string = 'Plumbus'
let count = 3
string.repeat(count);
Example 3: JavaScript repeat character
var a="a";
var aaa=a.repeat(3);
Example 4: 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 5: string repeat javascript
repeatStr = (n, s) => s.repeat(n);
Example 6: repeat js
repeatStr = (n, s) => s.repeat(n);