Skip to content

Commit

Permalink
Rework confusion sentence
Browse files Browse the repository at this point in the history
  • Loading branch information
bpesquet committed Aug 10, 2017
1 parent b67f05a commit 905bd04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manuscript/chapter13.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ As expected, the DOM object `body` is an element node because it's an HTML tag.

### Access a node's children

Each element-typed object in the DOM has a property called `childNodes`. This is an ordered collection containing all its child nodes as DOM objects. You can use this collection similar to an array to access the different children of a node.
Each element-typed object in the DOM has a property called `childNodes`. This is an ordered collection containing all its child nodes as DOM objects. You can use this array-like collection to access the different children of a node.

W> The `childNodes` property of an element node is not a real JavaScript array, but rather a [NodeList](https://developer.mozilla.org/en-US/docs/Web/API/NodeList) object. Not all of the standard array methods are applicable to it.

Expand Down

0 comments on commit 905bd04

Please sign in to comment.