how to make a function repeat in javascript code example

Example 1: string repeat javascript

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

Example 2: repeat js

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

Example 3: repeat a function javascript

setInterval(function(){
  console.log("Hello");
  console.log("World");
}, 2000); //repeat every 2s

Example 4: js repeat

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

Example 5: string repeat

// hey buddy, here are different implementations, choose your favourite !!


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


// short
function repeatStr(n, s) {
  return s.repeat(n);
}


// without using repeat
function repeatStr(n, s) {
  var str = "";
  for (var i = 0; i < n; i++) str += s;
  return str;
}