Dom Nodes Navigate
# XML DOM - Navigating Nodes
* * *
Nodes in the node tree can be navigated using relationships between nodes.
* * *
## Navigating DOM Nodes
Accessing nodes in the node tree through their relationships is often referred to as "navigating nodes".
In the XML DOM, node relationships are defined as properties of the node:
* parentNode
* childNodes
* firstChild
* lastChild
* nextSibling
* prev
```
YouTip