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());