JSFiddle - React, Tailwind, and code Playground
HTML
<div id="xx"></div>
JavaScript
if (document.getElementById('xx') !=null)
console.log('it exists!');
if (document.getElementById('xxThisisNotAnElementOnThePage') ==null)
console.log('does not exist!');