javascript - Array.from returns empty array -


i trying filter children of div element.

i direct access parent div via angular viewchild , if print children

console.log(this.myparentdiv.nativeelement.children); 

i following output in chrome:

enter image description here

i need convert array able filter divs. if convert

console.log(array.from(this.myparentdiv.nativeelement.children)); 

it returns empty array.

any idea why returns empty?


Comments

Popular posts from this blog

python - RuntimeError: can't re-enter readline -

python - PyInstaller UAC not working in onefile mode -

php - Need to store a large amount of data in session with CI 3 but on storing large data in session it is itself destorying automatically -