a sample of what i have so far
$.get(twitchBaseUrl + names,{dataType: “jsonp”}).then(function(theStream) {
twitchUserInfo[index] = {};
twitchUserInfo[index].user_stream = (theStream.stream ? true : false);
if (twitchUserInfo[index].user_stream) {
onlineUsers.push(twitchUserInfo[index]);
} else {
offlineUsers.push(twitchUserInfo[index]);
}
completedRequest += 1;
return $.get(theStream._links.channel,{dataType: “jsonp”});
})