Answers for "repeat function examples"

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language