Skip to content

Instantly share code, notes, and snippets.

@seanstrom
Created January 20, 2015 05:53
Show Gist options
  • Save seanstrom/e1e0e8a96a173132de76 to your computer and use it in GitHub Desktop.
Save seanstrom/e1e0e8a96a173132de76 to your computer and use it in GitHub Desktop.
Async JS/Node - Parallel Callbacks Example - Part 3
// Part 3
var username = 'seanghagstrom'
getTweetsPostsRepos(username, function(err, tweetsPostsRepos) {
if(err) {
console.error(err)
} else {
console.log(username + ' has this stuff ' + tweetsPostsRepos)
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment