JSFiddle - React, Tailwind, and code Playground

JavaScript

function c() {
    setTimeout( d(), 1000 );
}

function d() {
    debugger;   
}

c();