HTMLCollections & NodeLists
Most of us believed, at least for some time, that in our DOM Scripting, we always dealt with arrays in our JavaScript:
1 2 3 | var myLinks = document.getElementsByTagName('a'); // we have three links myLinks.length; // "3" |