JSFiddle - React, Tailwind, and code Playground

by Dmitry Morar

JavaScript

var res = (function f() {
	function f() {return 1}
  
  return f()

function f() {return 2}
})()

console.log(res);