JSFiddle - React, Tailwind, and code Playground
JavaScript
//create global variable with square bracket notation
window['y'] = 'old';
//redeclaration of the same variable
var y;
//it's now null
alert(y);
if (!y) y = 'new';
alert(y); //shows New instead of Old