JSFiddle - React, Tailwind, and code Playground

by dougneiner

HTML

<pre id="pre"></pre>
<div id="pre2"></div>

CSS

pre { font-family: "Courier New"; } 
div { white-space: pre }

JavaScript

var val = JSON.stringify( { "hi": true }, null, "\t" ),
    t = document.createTextNode( val ), 
    t2 = document.createTextNode( val );

document.getElementById( "pre").appendChild( t );
document.getElementById( "pre2").appendChild( t2 );