JSFiddle - React, Tailwind, and code Playground

by Kevin Faulhaber

JavaScript

var func = (function(){
    console.log('func');
    return function(){
        console.log('func 3');
    };
})();

function func2(){
    console.log('func2');
}

func();
func2();