var startIndex = 0;
var data = [1, 2, 3];
var timeout = 1000;
function functionToRun(i, length) {
alert(data[i]);
}
(function forWithDelay(i, length, fn, delay) {
setTimeout(function() {
fn(i, length);
i++;
if (i < length) {
forWithDelay(i, length, fn, delay);
}
}, delay);
})(startIndex, data.length, functionToRun, timeout);
Uma versão modificada da resposta de Daniel Vassallo, com variáveis extraídas em parâmetros para tornar a função mais reutilizável:
Primeiro vamos definir algumas variáveis essenciais:
var startIndex = 0;
var data = [1, 2, 3];
var timeout = 3000;
Em seguida, você deve definir a função que deseja executar. Isso será passado para i, o índice atual do loop e o comprimento do loop, caso você precise:
function functionToRun(i, length) {
alert(data[i]);
}
Versão auto-executável
(function forWithDelay(i, length, fn, delay) {
setTimeout(function () {
fn(i, length);
i++;
if (i < length) {
forWithDelay(i, length, fn, delay);
}
}, delay);
})(startIndex, data.length, functionToRun, timeout);
Versão funcional
function forWithDelay(i, length, fn, delay) {
setTimeout(function () {
fn(i, length);
i++;
if (i < length) {
forWithDelay(i, length, fn, delay);
}
}, delay);
}
forWithDelay(startIndex, data.length, functionToRun, timeout); // Lets run it