Last active
August 4, 2017 08:29
-
-
Save s-ashwinkumar/984eb37b7837bc4a1c3428a038465786 to your computer and use it in GitHub Desktop.
Async equivalent of the synchronous code
This file contains 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
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