Created
March 17, 2018 01:13
-
-
Save monteslu/2974bc40a10b29a5e628703c647fcf22 to your computer and use it in GitHub Desktop.
better before example
This file contains hidden or 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
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