JSFiddle - React, Tailwind, and code Playground

by kmendes

JavaScript

function foo() {
  var b = "bee"
  return function() {
    return b;
  }
}
var f = foo();
console.log(f());