Sololearn: Learn to Code
New course! Every coder should learn Generative AI!
Try a free lesson
+ 6
I believe this is the part you talking about Working with DOM Each element in the DOM has a set of properties and methods that provide information about their relationships in the DOM: element.childNodes returns an array of an element's child nodes. element.firstChild returns the first child node of an element. element.lastChild returns the last child node of an element. element.hasChildNodes returns true if an element has any child nodes, otherwise false. element.nextSibling returns the next node at the same tree level. element.previousSibling returns the previous node at the same tree level. element.parentNode returns the parent node of an element. Refer back to the lesson https://www.sololearn.com/Play/JavaScript
6th Mar 2019, 2:35 AM
abdulconsole
abdulconsole - avatar