“JavaScript htmlCollection” Ответ

Для htmlCollection javaScript

var list = document.getElementsByClassName("class-name");
for (let item of list) {
    console.log(item.id);
}
Uninterested Unicorn

JavaScript htmlCollection

/* 
	Every function like document.getElementById() is a function of 
    htmlcollection. You can also change it or add new functions to it.
*/
// Examples 
HTMLCollection.namedItem()
HTMLCollection.item()
HTMLCollection.length
// How To Extend
HTMLCollection.prototype.class = function (value) {

};
document.getElementById("main").class();
Undefined

Ответы похожие на “JavaScript htmlCollection”

Вопросы похожие на “JavaScript htmlCollection”

Больше похожих ответов на “JavaScript htmlCollection” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования