JSFiddle - React, Tailwind, and code Playground

by Tim Büthe

JavaScript

var func3 = (function(){
    
  var test;
   
  function func1() {
      test = 5;
  }
    
  return function() {
      func1();
      alert(test);
  }
   
    
})();



// test
func3();