СЧ
Size: a a a
СЧ
DE
let HTMLCollection = document.getElementsByClassName('btn')и перебираю его форейчем так
Array.prototype.forEach.call(HTMLCollection,function(elem){
// some code
})
СЧ
DE
СЧ
СЧ
DE
const сollection = document.getElementsByClassName('btn')
[...collection].some()
S
const сollection = document.getElementsByClassName('btn')
[...collection].some()
СЧ
DE
СЧ
DE