Head and Tail Recursion

Use Debuger
To Visualize: Copy code and test Click Here

Code


       
      function colors(){
        let data =20;
        console.log(data)
      }
      function days(){
        colors()
      }

      function fruit()
      {
        days()
      }

       function topFunction()
       {
        fruit()
       }
       topFunction();