repeat times javascript code example
Example 1: js string times
let string = 'Plumbus'
let count = 3
string.repeat(count); // -> 'PlumbusPlumbusPlumbus'
Example 2: repeat a function javascript
setInterval(function(){
console.log("Hello");
console.log("World");
}, 2000); //repeat every 2s