Skip to content

Instantly share code, notes, and snippets.

@bitchwhocodes
Created March 6, 2016 04:07
Show Gist options
  • Save bitchwhocodes/08756687c339f24360c0 to your computer and use it in GitHub Desktop.
Save bitchwhocodes/08756687c339f24360c0 to your computer and use it in GitHub Desktop.
var items = [1,2,3,4];
var arrayCounter = -1;
function getFace(i)
{
// ajax call
//when done call
// getFaceComplete()
}
function getFaceComplete(){
arrayCounter++;
// if there is anything in the array//
// doItem()
}
function doItem(){
var item = items[arrayCounter];
getFace(item);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment