JSFiddle - React, Tailwind, and code Playground
by pehrlich
HTML
<div id="out"></div>
JavaScript
var now = performance.now();
requestAnimationFrame(function(timestamp){
document.getElementById('out').innerHTML = timestamp > now;
console.assert(timestamp > now);
});