JSFiddle - React, Tailwind, and code Playground

by domenlightenment

HTML

<script src="https://getfirebug.com/firebug-lite-debug.js"></script>
<div id="ex1"><strong>Hi</strong></div>
<div id="ex2"><i>Dude</i></div>
<div id="ex3">how</div>
<div id="ex4">are</div>
<div id="ex5">you</div>

JavaScript

console.log(
    document.getElementById('ex1').innerHTML, //logs <strong>Hi</strong>
    document.getElementById('ex2').outerHTML, //logs <div id="ex2"><i>Dude</i></div>
    document.getElementById('ex3').innerText, //logs how
    document.getElementById('ex4').outerText, //logs are, a bit odd... !
    document.getElementById('ex5').textContent //logs you
);