JSFiddle - React, Tailwind, and code Playground

by anzeo

JavaScript

var aStrictMethod = function(){
    "use strict";
    console.log(this);
},
    aLenientMethod = function(){
        console.log(this);
    };

aStrictMethod.apply(null);
aLenientMethod.apply(null);