Skip to content

Instantly share code, notes, and snippets.

@joepie91
Created August 29, 2014 18:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joepie91/a367bd83e19df738d63c to your computer and use it in GitHub Desktop.
Save joepie91/a367bd83e19df738d63c to your computer and use it in GitHub Desktop.
Promises in CoffeeScript
someAsyncMethod()
.then (result) ->
DoSomethingSynchronous()
return someOtherAsyncMethod("stuff")
.then (result) ->
return yetAnotherAsyncMethod("things", "and stuff")
.then (result) ->
console.log "Whoo, we're done!"
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment