JSFiddle - React, Tailwind, and code Playground

JavaScript

function addElement() {
    var foo = document.createElement('p');
    foo.id = "bar";
    document.body.appendChild(foo);
}
function getElement() {
    alert(document.getElementById('bar'));
}    
    
addElement();
getElement();