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 - Error: Unresolved reference 'selenium' What is the reason? -

How do I compare strings in Java? -

ios - Pass NSDictionary from Javascript to Objective-c in JavascriptCore -