JSFiddle - React, Tailwind, and code Playground

by slater

JavaScript

// This is OK. 
document === undefined ? document.writeln("==") : document.writeln("!=");

// Some bad guy did this..
undefined = document; 

// Then your code is totally messed
document === undefined ? document.writeln("==") : document.writeln("!=");