Подскажите, у меня вот такой вопрос:
Для примера привожу описание метода Node.childNodes c mozilla:
https://developer.mozilla.org/en-US/...ode/childNodes
Цитата:
|
The read-only childNodes property of the Node interface returns a live NodeList of child nodes of the given element where the first child node is assigned index 0. Child nodes include elements, text and comments.
|
Цитата:
|
Доступное только для чтения childNodes свойство Node-интерфейса возвращает в реальном времени NodeList дочерний nodes-элемент данного элемента, где первому дочернему узлу присваивается индекс 0. Дочерние узлы включают элементы, текст и комментарии.
|
Вот почему тут написано, какие типы Нод возвращает метод - "элементы, текст и комментарии"
А вот к примеру тут: Node.firstChild:
https://developer.mozilla.org/ru/doc...ode/firstChild
Нету:
Цитата:
|
The read-only firstChild property of the Node interface returns the node's first child in the tree, or null if the node has no children.
If the node is a Document, this property returns the first node in the list of its direct children.
|
Как вот понимать, какого типа Ноды возвращает к примеру метод Node.firstChild ?