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