DEV Community

Discussion on: Struggling with Promises? You Are Not Alone!

Collapse
 
darkwiiplayer profile image
𒎏Wii 🏳️‍⚧️
promise.then(onFulfilled)
promise.catch(onFailure)
// We can write it like this also

promise.then(onFulfilled).catch(onFailure)
Enter fullscreen mode Exit fullscreen mode

It should be pointed out that this isn't actually the same, and may behave differently in certain cases.