JSFiddle - React, Tailwind, and code Playground
by raycn
HTML
<div>
hello world
</div>
JavaScript
function delay() {
var time = Date.now(),
now = Date.now();
while((now - time) < 5000 ) {
now = Date.now();
}
}
delay();
console.log('finish')