JSFiddle - React, Tailwind, and code Playground

by antelopelovefan

JavaScript

var foo  = window;
var bar = {};
console.log(foo);
console.log(typeof foo);

console.log(foo == window);
console.log(foo.self == window);
console.log(bar.self == window);