Aplicando atraso entre iterações de javascript para loop

É possível aplicar um atraso a iterações sucessivas de um javascript for-loop usando jQuery ou sublinhado? Eu tenho um for-loop na minha página que estou usando para aparecer notificações de growl quando os usuários preenchem certas condições e se há várias condições que eu gostaria de escalonar as notificações de growl em vez de aparecer vários ao mesmo tempo. Aqui está o loop em questão:

var badge_arr = response.split("Earned badge:");
//Start at 1 so I'm not getting everything before the first badge
for(i = 1; i < badge_arr.length; i++){
    responseStr += badge_arr[i];
    //Create growl notification
    //badge info echoed back will be of the form 
    //Earned badge: name: description: imgSource
    var badge_info = badge_arr[i].split(':');
    var title = 'NEW BADGE UNLOCKED';
    var text = 'You just unlocked the badge '+badge_info[0]+': '+badge_info[1];
    var img = badge_info[2];
    createGrowl(title, text, img);
} 

questionAnswers(2)

yourAnswerToTheQuestion