JSFiddle - React, Tailwind, and code Playground

by TheDiamondDoge

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}`))