Skip to content

Instantly share code, notes, and snippets.

@seanstrom
Last active August 29, 2015 14:13
Show Gist options
  • Save seanstrom/efc7c6ce375d7d9c4523 to your computer and use it in GitHub Desktop.
Save seanstrom/efc7c6ce375d7d9c4523 to your computer and use it in GitHub Desktop.
Async JS/Node - Parallel Async.js Example - Part 2
// Part 2
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