js repeat function code example

Example 1: js multiply string

let myString = 'test';

myString.repeat(3);		// 'testtesttest'

Example 2: string repeat javascript

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

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: js repeat

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