Skip to content

Instantly share code, notes, and snippets.

@aherve
Last active December 7, 2016 10:55
Show Gist options
  • Select an option

  • Save aherve/caeb6f7a32d8d7245ed66477872fac5a to your computer and use it in GitHub Desktop.

Select an option

Save aherve/caeb6f7a32d8d7245ed66477872fac5a to your computer and use it in GitHub Desktop.
function demoPromise (userId) {
User
.findById(userId)
.then(user => {
doSomethingAsync(user)
.then(result => {
finalResult(user, result)
})
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment