JSFiddle - React, Tailwind, and code Playground

by qwerew0

JavaScript

function timer(){
      setTimeout(function(){
      console.log('작업')
      timer(
        timer(1000)
      )
      
      },1000)
      }
      timer()