JSFiddle - React, Tailwind, and code Playground
by Chris Rebert
JavaScript
var hasHead = document.head !== undefined;
var hasBody = document.body !== undefined;
alert('head: ' + (hasHead ? 'PASS' : 'FAIL') + '\nbody: ' + (hasBody ? 'PASS' : 'FAIL'));