JSFiddle - React, Tailwind, and code Playground
JavaScript
function theCityThatAlwaysSleeps() {
let getCity;
if (true) {
let city = "Seattle";
getCity = function() {
return city;
}
}
return getCity();
}
alert(theCityThatAlwaysSleeps())