Question #7101   Submitted by Answiki on 11/19/2022 at 10:53:23 AM UTC

In JavaScript, how to iterate over HTMLCollection elements?

Answer   Submitted by Answiki on 11/19/2022 at 10:54:54 AM UTC

The following code show how to iterate over HTMLCollections in JavaScript:

let list = document.getElementsByClassName("myCLass");
for (let item of list) {
    console.log(item.id);
}

2 events in history
Answer by Answiki on 11/19/2022 at 10:54:54 AM

The following code show how to iterate over HTMLCollections in JavaScript:

let list = document.getElementsByClassName("myCLass");
for (let item of list) {
    console.log(item.id);
}

Question by Answiki 11/19/2022 at 10:53:23 AM
In JavaScript, how to iterate over HTMLCollection elements?
# ID Query URL Count

Icons proudly provided by Friconix.