JS randomly calls a method of the specified function

  • 2020-06-22 23:54:16
  • OfStack

This article is an example of how JS randomly calls a specified function. Share to everybody for everybody reference. The details are as follows:

This code calls the specified function through the random timer, can achieve the interval of random time line of the specified function purpose


function randRange(data) {
    var newTime = data[Math.floor(data.length * Math.random())];
    return newTime;
}
function toggleSomething() {
    var timeArray = new Array(200, 300, 150, 250, 2000, 3000, 1000, 1500);
    // do stuff, happens to use jQuery here (nothing else does)
    $("#box").toggleClass("visible");
    clearInterval(timer);
    timer = setInterval(toggleSomething, randRange(timeArray));
}
var timer = setInterval(toggleSomething, 1000);
// 1000 = Initial timer when the page is first loaded

Hopefully, this article has been helpful in your javascript programming.


Related articles: