JSFiddle - React, Tailwind, and code Playground

by mauro_nappolini

HTML

<div id="myDIV">
  <p>I am a paragraph</p>
  <p>I am a paragraph</p>
  <p>I am a paragraph</p>
</div>

JavaScript

const collection = document.getElementById("myDIV").children;
const selectTwo = collection[1];
selectTwo.style.backgroundColor = "yellow";