JSFiddle - React, Tailwind, and code Playground
JavaScript
var z = 0;
var start = +new Date();
(function() {
if (z++ < 920)
{
setTimeout(arguments.callee, 0);
}
else
{
alert((+new Date - start) / 1000);
}
})();