Pilih Elemen HTML oleh Selektor CSS
const elements = document.querySelectorAll("div.article > h1");
mentico
const elements = document.querySelectorAll("div.article > h1");
//Selects all elements with the specified element name.
p {
color: blue;
}