A method call itself in JavaScript

Run URL one by one in for loop JavaScript

Hello Guys, I’m sharing here “How to Run URL one by one in for loop in JavaScript?” Following the bellow example for the same:-

//URL Array
var linksArray = ['https://www.codefari.com/', 'https://www.code-sample.xyz', 'https://www.code-sample.com'];

//Execute runURL method
function runURL() {
    if (linksArray.length == 0) return;

    var url = linksArray.shift();
    var openWindow = window.open(url);

    setTimeout(function () {
        openWindow.close();
        //Execute runURL method
        runURL();
    }, 5000);
}

//Execute runURL method
runURL();
ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^