Skip to content

Instantly share code, notes, and snippets.

@monteslu
Created March 17, 2018 01:13
Show Gist options
  • Save monteslu/2974bc40a10b29a5e628703c647fcf22 to your computer and use it in GitHub Desktop.
Save monteslu/2974bc40a10b29a5e628703c647fcf22 to your computer and use it in GitHub Desktop.
better before example
const getInfo = () =>
axios.get('/users')
.then(console.log)
.then(getGroups)
.then(console.log)
.then(getFavorites)
.then(favorites => {
console.log(favorites)
return 'all done'
}
getInfo()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment