JSFiddle - React, Tailwind, and code Playground

by djmartini

JavaScript

setTimeout(function setTimeoutCallback() {
  alert('setTimeout');
}, 0)


setImmediate(function setImmediateCallback() {
  alert('setImmediate');
})