Last active
November 3, 2016 04:17
-
-
Save bluejava/d5b04a71779ab897ac5443f8651d6611 to your computer and use it in GitHub Desktop.
Example 5 Vanilla for Medium Post
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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