— You get nodeList.item(int)
— But can't you call / apply map to a NodeList?
— Sure, but that's an additional data structure where there was not a need for one
— Array.prototype.map.call(list, callback)
— You could do Array.from
on it
— Yeah, that is very true
— Since that method accepts iterators
— But... if you have iterators, just use the iterators haha