Skip to content

Instantly share code, notes, and snippets.

@bluejava
Last active November 3, 2016 04:17
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 bluejava/d5b04a71779ab897ac5443f8651d6611 to your computer and use it in GitHub Desktop.
Save bluejava/d5b04a71779ab897ac5443f8651d6611 to your computer and use it in GitHub Desktop.
Example 5 Vanilla for Medium Post
var username = "glenn"
getUser(username)
then(function(user) {
renderUser(user)
.then(function(userRenderer) {
getFavorites(user)
.then(function(favs) { renderUserFavs(userRenderer, favs) })
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment