JSFiddle - React, Tailwind, and code Playground
by Mitch Greer
JavaScript
var s = "Nicholas"
var b = true;
var i = 22;
var u;
var n = null;
var o = new Object();
alert(typeof s);
alert(typeof i);
alert(typeof b);
alert(typeof u);
alert(typeof n);
alert(typeof o);