JSFiddle - React, Tailwind, and code Playground

by Chris Rebert

HTML

<div id="a">my words</div>

JavaScript

var result = document.getElementById('a').innerText === 'my words';
alert(result ? 'PASS' : 'FAIL');