JSFiddle - React, Tailwind, and code Playground

by qustosh

JavaScript

function one(){
    two();
    }
    
 function two(){
     console.log("hey")
         }
         
         
         one();