Skip to content

Instantly share code, notes, and snippets.

@Ginden
Created August 27, 2014 23:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ginden/8fb8069d11c6798c204a to your computer and use it in GitHub Desktop.
Save Ginden/8fb8069d11c6798c204a to your computer and use it in GitHub Desktop.
var arr = [1,2,3,4]
(function ajax(arr){
if(!arr.length) return;
var tmp = arr.shift();
setTimeout(ajax, 1000, arr);
console.log('wykonuje ajaxa '+tmp);
})(arr);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment