JSFiddle - React, Tailwind, and code Playground

by Abhishek Hingu

JavaScript

function theCityThatAlwaysSleeps() {
    let getCity;

    if (true) {
        let city = "Seattle";
        getCity = function() {
            return city;
        }
    }

    return getCity();
}
alert(theCityThatAlwaysSleeps())