JSFiddle - React, Tailwind, and code Playground
JavaScript
Promise.reject(10)
.then(value => console.log(value))
.then(value => console.log(value))
.then(
value => console.log(value)
).catch(value => 10 + 10)
.then(value => console.log(`this is ${value}`))
.catch(err => console.log(`this is ${err}`))