What are NodeLists in JavaScript? 📃

#JavaScript #tutorial #course 00:00:00 introduction 00:00:36 setup 00:01:49 How to create a nodeList 00:03:01 Add HTML/CSS properties 00:04:23 CLICK event listener 00:05:40 MOUSEOVER + MOUSEOUT event listener 00:07:17 Add an element 00:10:40 Remove an element 00:12:50 conclusion // NodeList = Static collection of HTML elements by (id, class, element) // Can be created by using querySelectorAll() // Similar to an array, but no (map, filter, reduce) // NodeList won't update to automatically reflect changes