Answers for "repeat method"

CSS
5

JavaScript repeat character

var a="a";
var aaa=a.repeat(3); // "aaa"
Posted by: Guest on July-31-2019
0

repeat string using repeat built in function

var str = "Hello world!";

 str.repeat(2);
Posted by: Guest on April-20-2021
0

"$".repeat

"$".repeat(
Posted by: Guest on October-10-2020
0

repeat method

let labels = [];
repeat(5, i => {
  labels.push(`Unit ${i + 1}`);
});
console.log(labels);
// → ["Unit 1", "Unit 2", "Unit 3", "Unit 4", "Unit 5"]
Posted by: Guest on October-01-2021
-1

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;
}
Posted by: Guest on August-17-2020

Browse Popular Code Answers by Language