JSFiddle - React, Tailwind, and code Playground
by lshettyl
JavaScript
var obj = {
funcB: function() {
alert(this.var1);//how to make it alert 5
alert(this.var20);//how to make it alert 50
},
funcA: function(){
this.var1=5;
this.var20=50;
this.funcB();
}
};
obj.funcA();