JSFiddle - React, Tailwind, and code Playground

by eget teteete

JavaScript

fetch('https://api.github.com/repos/javascript-tutorial/en.javascript.info/commits')
  .then(response => response.json())
  .then(commits => console.log(commits))
  .catch(error => console.log(error))
  .finally(res => console.log(res))
  .then(() => console.log('then after finally'))