JSFiddle - React, Tailwind, and code Playground
by some
JavaScript
function nothing() {};
var timeout=24*60*60*1000;
var idold, idnew=0, idx=0;
do {
idold = idnew;
idnew = setTimeout(nothing,timeout);
if(++idx%1000 === 0) console.log(idx, idnew);
} while(idnew > idold && idx < 10000000);