I\'m trying to make a simple loop:
const parent = this.el.parentElement console.log(parent.children) parent.children.forEach(child => { console.log(chil
There is no need for the forEach, you can iterate using only the from's second parameter, like so:
forEach
let nodeList = [{0: [{'a':1,'b':2},{'c':3}]},{1:[]}] Array.from(nodeList, child => { console.log(child) });