JSFiddle - React, Tailwind, and code Playground

by Shishir Morshed

JavaScript

(function(){
	console.log(1);
  setTimeout(function() { console.log(2) });
  console.log(3);
  setTimeout(function() { console.log(4) }, 0);
  console.log(5);
})();
console.log(6);