JSFiddle - React, Tailwind, and code Playground

HTML

Look in the console

JavaScript

const obj = (() => {
	let value = 'value';
  return () => value;
})();

console.log(obj() === 'value'); // true