JSFiddle - React, Tailwind, and code Playground

by Amens

HTML

<h1>Some header</h1>
<p id="pID">Some paragraph</p>
<p name="pNAME">Another paragraph/p>

JavaScript

var rootElement = document.documentElement;
var childNodes = rootElement.childNodes;

for (var i = 0; i < childNodes.length; i++) {
    document.write(childNodes[i]);
    document.write("<br>");
}