Skip to content

Instantly share code, notes, and snippets.

@jkosoy
Created March 9, 2016 20:12
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Promises Explained
animateFareTextIn(function() {
animateWeatherTextIn(function() {
animateDividerIn(function() {
animateLoadingSentence1In(function() {
animateLoadingSenetence2In(function() {
// all done!
})
}
}
})
})
// vs
firstly(function() {
animateFareTextIn()
})
.then(function() {
animateWeatherTextIn()
})
.then(function() {
animateDividerIn()
})
.then(function() {
animateLoadingSentence1In()
})
.then(function() {
animateLoadingSentence2In()
})
.then(function() {
// all done!
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment