JSFiddle - React, Tailwind, and code Playground
by spechackers
JavaScript
(function() {
'use strict';
console.log(this);
}).call(null); // null
(function() {
console.log(this);
}).call(null); // window
by spechackers
(function() {
'use strict';
console.log(this);
}).call(null); // null
(function() {
console.log(this);
}).call(null); // window