From 2d0ce2c5e5d2998f92f67212d6d4ae24e1082b5a Mon Sep 17 00:00:00 2001 From: bendtherules Date: Sat, 7 Nov 2020 17:22:48 +0530 Subject: [PATCH] element-properties - Shorteen NodeeList eextra text --- docs/element-properties.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/element-properties.mdx b/docs/element-properties.mdx index 1132153..9af2454 100644 --- a/docs/element-properties.mdx +++ b/docs/element-properties.mdx @@ -131,7 +131,7 @@ It returns the **number of child elements** of the given element. This is equiva This property returns a live `NodeList` containing all the **child nodes** of the current element. If there are no child nodes, it returns a empty NodeList. -`NodeList` can be converted to an array easily, using `Array.from()` or `[...ele.children]`. NodeList is also a iterable and has a `.length` property. +`NodeList` can be converted to an array easily, using `Array.from()` or `[...ele.children]`. NodeList also has a `.length` property. Here, the NodeList is **live** - so the content of NodeList will auto-update. ```jsx