string.repeat 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: how to return a string x amount in javascript without using . repeat
function repeatStringNumTimes(string, times) {
var repeatedString = "";
while (times > 0) {
repeatedString += string;
times--;
}
return repeatedString;
}
repeatStringNumTimes("abc", 3);
Example 4: repeat js
repeatStr = (n, s) => s.repeat(n);
Example 5: repeat string using repeat built in function
var str = "Hello world!";
str.repeat(2);
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;
}