JSFiddle - React, Tailwind, and code Playground

by toby3105

JavaScript

var func = (function f1(){
    var p = "bla";
    var f2 = function(obj){
       this.obj = obj
    }
    var f3 = function(){
        console.log(this);
        console.log(obj)
    }
    return {
        f2:f2,
        f3:f3
    }
})();

func.f2("bla");
func.f3();