JSFiddle - React, Tailwind, and code Playground
by secretgspot
JavaScript
w(typeof 123);
w(typeof "abc");
w(typeof true);
w(typeof false);
w(typeof undefined);
w(typeof ({x:1,y:2}));
w(typeof ({}));
w(typeof [1,2,3]);
w(typeof (new Array()));
w(typeof (new Number()));
w(typeof (new String()));
w(typeof (new Boolean()));
w(typeof null);
w(typeof function(){});
w(typeof escape);
w(typeof /([0-9A-Z]+)/);
w(typeof (new RegExp("")));
function w(t){
document.write(t+'<br />');
}