JSFiddle - React, Tailwind, and code Playground

JavaScript

function foo() {
    function bar() {
        //console.log(foo.toString());
        alert(foo.toString());
    }
    bar();
}
foo();