JSFiddle - React, Tailwind, and code Playground
by Andy You
JavaScript
function f() {
this.n = 32;
function g() {
return n;
}
return g;
}
var g = f();
console.log(g());
by Andy You
function f() {
this.n = 32;
function g() {
return n;
}
return g;
}
var g = f();
console.log(g());