Answers for "repeat function"

1

repeat a function javascript

setInterval(function(){
  console.log("Hello");
  console.log("World");
}, 2000); //repeat every 2s
Posted by: Guest on November-25-2020
0

repeat string using repeat built in function

var str = "Hello world!";

 str.repeat(2);
Posted by: Guest on April-20-2021
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

Code answers related to "Javascript"

Browse Popular Code Answers by Language