<div id="div-02">Here is div-02</div>
var el = document.getElementById('div-02');
el.remove(); // Removes the div with the 'div-02' id
setTimeout(() => {
el.add?... },5000)
I want to remove the element for 5 seconds and make it same as it was previously( before removing it).