Próbuję zrobić prostą pętlę:
const parent = this.el.parentElement
console.log(parent.children)
parent.children.forEach(child => {
console.log(child)
})
Ale pojawia się następujący błąd:
VM384: 53 Uncaught TypeError: parent.children.forEach nie jest funkcją
Mimo że parent.children
dzienniki:
Jaki może być problem?
Uwaga: oto JSFiddle .