Exécutez une boucle de temps pour un certain temps javascript
var keepCalling = true;
setTimeout(function () {
keepCalling = false;
}, 60000);
while (keepCalling) {
callPeople();
}
Xerothermic Xenomorph