repeat method javascript code example
Example 1: js string times
let string = 'Plumbus'
let count = 3
string.repeat(count);
Example 2: JavaScript repeat character
var a="a";
var aaa=a.repeat(3);
Example 3: string repeat javascript
repeatStr = (n, s) => s.repeat(n);
Example 4: repeat js
repeatStr = (n, s) => s.repeat(n);
Example 5: repeat a function javascript
setInterval(function(){
console.log("Hello");
console.log("World");
}, 2000);
Example 6: js repeat
function repeatStr (n, s) {
return s.repeat(n)
}
repeatStr = (n, s) => s.repeat(n);