Created
February 11, 2020 16:28
-
-
Save gsampath127/080f4677bed3fcc0db1ad1a5102106c6 to your computer and use it in GitHub Desktop.
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
newMobile.then((message)=>{ | |
console.log(message); | |
return newBike; | |
}).then((message)=>{ | |
console.log(message); | |
return newCar; | |
}).then((message)=>{ | |
console.log(message); | |
}).catch((message)=>{ | |
console.log("One of the promise failed"); | |
console.log(message); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment