JSFiddle - React, Tailwind, and code Playground

by colorkid

JavaScript

function foo() {
	console.log('foo');
}

setTimeout(() => {
	foo();
}, 0);

for(let i = 0; i < 1000000000; i++) {
	++i;
}

console.log('here2');