I\'m trying to make a simple loop:
const parent = this.el.parentElement console.log(parent.children) parent.children.forEach(child => { console.log(chil
A more naive version, at least you're sure that it'll work on all devices, without conversion and ES6 :
const children = parent.children; for (var i = 0; i < children.length; i++){ console.log(children[i]); }
https://jsfiddle.net/swb12kqn/5/