NodeList

// nodeList๋Š” ์ดํ„ฐ๋Ÿฌ๋ธ” ๊ฐ์ฒด

const el = document.querySelectorAll("category");
const index = el.item(0); // [0] ์ธ๋ฑ์Šค ์—˜๋ฆฌ๋จผํŠธ๋ฅผ ๋ฐ˜ํ™˜
const keep = el.forEach(el => console.log(el.textContext)); // category์ธ ๋…ธ๋“œ๋ฆฌ์ŠคํŠธ๋ฅผ ์ฝ˜์†”์— ์ฐ์Œ

Last updated