JSFiddle - React, Tailwind, and code Playground

by Anik Islam Abhi

JavaScript

const startCallback = Date.now();

  // do something that will take 10ms...
  while (Date.now() - startCallback < 1000) {
    // do nothing
    console.log(1)
  }