JSFiddle - React, Tailwind, and code Playground
by artgas_pro
HTML
<ul>
<li>Пункт №1</li>
<li>Пункт №2</li>
</ul >
JavaScript
const list = document.querySelectorAll('ul');
console.log(list[0]);
by artgas_pro
<ul>
<li>Пункт №1</li>
<li>Пункт №2</li>
</ul >
const list = document.querySelectorAll('ul');
console.log(list[0]);