JSFiddle - React, Tailwind, and code Playground

JavaScript

alert("I'm evaluated in the initial global execution context! this:" + this)

setTimeout(function () {
    alert("I'm NOT evaluated in the initial global execution context. this" + this);
}, 1);