JSFiddle - React, Tailwind, and code Playground

by YuHan Chien

JavaScript

let doit = function (con,func){
	if(con > 0.5){
  	func()
  }else{
  
  }
}


doit(0.6,go);

doit(0.6,function(){
	go();
});

(function go(){

})();