JSFiddle - React, Tailwind, and code Playground
JavaScript
var sandbox = {};
(function() {
console.log(this); // 1
var somefunc = function(name) {
console.log(this);
}
somefunc(); // 2
somefunc.call(this); // 3
}).call(sandbox);