[Solved] Unstoppable loop [closed]
Here, you will need to add your URL calling code tho. let arrUrls = [ [“URL1”, 4], [“URL2”, 10], [“URL3”, 8], [“URL4”, 9], [“URL5”, 6] ]; let sendNum = 0; function callUrl(url, rpt){ for (let i = 0; i < rpt; i++) { // calling code console.log(`called ${url} – ${i}/${sendNum}`); } }; let x = … Read more