From 905bd04b6c7c22f25489218d637669e52ca6e9da Mon Sep 17 00:00:00 2001 From: bpesquet Date: Thu, 10 Aug 2017 22:04:15 +0200 Subject: [PATCH] Rework confusion sentence --- manuscript/chapter13.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manuscript/chapter13.md b/manuscript/chapter13.md index 5b2c8ac..0b8e96a 100644 --- a/manuscript/chapter13.md +++ b/manuscript/chapter13.md @@ -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.