JSFiddle - React, Tailwind, and code Playground

by Malin Jayakody

JavaScript

let x = setTimeout(() => {
  let y = setTimeout(() => {

  }, 200);
  console.log(y);
}, 200);
console.log(x);