loop through dom array es6 code example
Example: loop through dom elements javascript
//Loop thru DOM elements
var all = document.getElementsByTagName("*");
for (var i=0, max=all.length; i < max; i++) {
// Do something with the element here
}