JSFiddle - React, Tailwind, and code Playground
by joplomacedo
CSS
body {
background: #444;
color: #fff;
font-family: helvetica, arial, sans-serif;
}
JavaScript
var a,
text;
for (a in window) {
if (window.hasOwnProperty(a) && window.propertyIsEnumerable(a)) {
text += a + '<br/>';
}
}
$('body').html(text);