1. Home
  2. Javascript
  3. Query selector all

Returns a list of nodes that are descendants of the queried element. To operate on the returned values you can loop through it using forEach() or convert the list to an array using Array.from()

#javascript#select
object.querySelectorAll();
copy
Full Javascript cheatsheet