how to repeat a function in javascript 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
repeatStr = (n, s) => s.repeat(n);
Example 3: repeat js
repeatStr = (n, s) => s.repeat(n);
Example 4: repeat a function javascript
setInterval(function(){
console.log("Hello");
console.log("World");
}, 2000);
Example 5: js repeat
function repeatStr (n, s) {
return s.repeat(n)
}
repeatStr = (n, s) => s.repeat(n);
Example 6: string repeat
repeatStr = (n, s) => s.repeat(n);
function repeatStr(n, s) {
return s.repeat(n);
}
function repeatStr(n, s) {
var str = "";
for (var i = 0; i < n; i++) str += s;
return str;
}