querySelector
Symbol
Query
document.querySelector("#id") // Returns the FIRST element with the ID of iddocument.querySelector(".id") // Returns the FIRST element with the className of iddocument.querySelector("label") // Returns the FIRST element that is a LABELLast updated