repeat a string n times javascript code example

Example 1: repeat string n times javascript

"a".repeat(10)

Example 2: js string times

let string = 'Plumbus'
let count = 3

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

Example 3: JavaScript repeat character

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

Example 4: 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);