← Back tothis vs that

children vs childNodes

Written byPhuoc Nguyen
Created
04 Sep, 2023
Category
DOM
If you're using the JavaScript Document Object Model (DOM) to access an element's child nodes, you have two options: `children` and `childNodes`. Although these properties may seem similar at first glance, they actually work a bit differently. Let's dive in!
To show the contrast between two properties, let's imagine you have an unordered list (`ul`) with a comment node (wrapped inside `<!-- and -->`), and three list items (`li`).
html
<ul>
<!-- Here are some sample items -->
<li>A</li>
<li>B</li>
<li>C</li>
</ul>

The children property

The `children` property is pretty handy. It lets you grab all of the child elements of an element, but not any non-element nodes like text or comment nodes.
Here's an example:
js
const parent = document.querySelector('ul');
const children = parent.children;

console.log(children.length); // 3
You can use the `querySelector` method to grab the list element, and then use the `children` property to get all of its child elements. Easy-peasy!

The childNodes property

On the other hand, the `childNodes` property returns all of the child nodes of an element, including non-element nodes like text or comment nodes.
To help you understand this concept better, here's an example:
js
const parent = document.querySelector('ul');
const childNodes = parent.childNodes;

console.log(childNodes.length); // 4
In this example, we use the `querySelector` method to select the list element. Then, we retrieve a collection of all the child nodes of the parent element using the `childNodes` property.
It's important to note that, unlike the `children` property, the `childNodes` property includes the comment node `<!-- Here are some sample items -->`. This is why the `childNodes.length` returns the number 4.
Good to know
Both `children` and `childNodes` return a collection of nodes that is constantly updated. To learn more, check out the Dynamic vs static NodeList post.
If you found this post helpful, please consider giving the repository a star on GitHub or sharing the post on your favorite social networks 😍. Your support would mean a lot to me!

Questions? 🙋

Do you have any questions about front-end development? If so, feel free to create a new issue on GitHub using the button below. I'm happy to help with any topic you'd like to learn more about, even beyond what's covered in this post.
While I have a long list of upcoming topics, I'm always eager to prioritize your questions and ideas for future content. Let's learn and grow together! Sharing knowledge is the best way to elevate ourselves 🥷.
Ask me questions

Recent posts ⚡

Newsletter 🔔

If you're into front-end technologies and you want to see more of the content I'm creating, then you might want to consider subscribing to my newsletter.
By subscribing, you'll be the first to know about new articles, products, and exclusive promotions.
Don't worry, I won't spam you. And if you ever change your mind, you can unsubscribe at any time.
Phước Nguyễn