JSFiddle - React, Tailwind, and code Playground

by PhillipSenn

JavaScript

function myFunction() {
    var i=100;
    function f() {
        return i++;
    }
    return f(); // with parenthesis
};
var X = myFunction();
alert(X);