javascript repeat string code example

Example 1: js string times

let string = 'Plumbus'
let count = 3

string.repeat(count); // -> 'PlumbusPlumbusPlumbus'

Example 2: JavaScript repeat character

var a="a";
var aaa=a.repeat(3); // "aaa"

Example 3: 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 4: string repeat javascript

// best implementation
repeatStr = (n, s) => s.repeat(n);

Example 5: repeat js

repeatStr = (n, s) => s.repeat(n);

Example 6: js repeat

function repeatStr (n, s) {
  return s.repeat(n)
}
/////////////////////////////similar///////////////////////////////////////////
repeatStr = (n, s) => s.repeat(n);