JSFiddle - React, Tailwind, and code Playground
JavaScript
const startCallback = Date.now();
// do something that will take 10ms...
while (Date.now() - startCallback < 1000) {
// do nothing
console.log(1)
}
const startCallback = Date.now();
// do something that will take 10ms...
while (Date.now() - startCallback < 1000) {
// do nothing
console.log(1)
}