Skip to content

Instantly share code, notes, and snippets.

@s-ashwinkumar
Last active August 4, 2017 08:29
Show Gist options
  • Save s-ashwinkumar/984eb37b7837bc4a1c3428a038465786 to your computer and use it in GitHub Desktop.
Save s-ashwinkumar/984eb37b7837bc4a1c3428a038465786 to your computer and use it in GitHub Desktop.
Async equivalent of the synchronous code
asyncMeth1()
.then(asyncMethod2)
.then(asyncMethod3)
.then(finalResult => console.log("I DID IT - "+finalResult))
.catch(failCall);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment