JSFiddle - React, Tailwind, and code Playground

by Kumaresan S

HTML

<button id="one" style="display:none">
one
</button>
<button>
two
</button>
<button>
three
</button>

JavaScript

(function () {
  var btn =document.getElementById("one").nextElementSibling.style.display = "none";
  
})();