1# Interface: DocumentFragment 2 3### Properties 4 5* [childNodes](#childnodes) 6* [children](#children) 7* [firstChild](#firstchild) 8* [lastChild](#lastchild) 9* [name](#name) 10* [next](#next) 11* [nextSibling](#nextsibling) 12* [nodeType](#nodetype) 13* [parent](#parent) 14* [parentNode](#parentnode) 15* [prev](#prev) 16* [previousSibling](#previoussibling) 17* [type](#type) 18 19--- 20 21## Properties 22 23<a id="childnodes"></a> 24 25### childNodes 26 27**● childNodes**: *Node[]* 28 29Same as [children](#children). [DOM spec](https://dom.spec.whatwg.org)-compatible alias. 30 31___ 32<a id="children"></a> 33 34### children 35 36**● children**: *Node[]* 37 38Child nodes. 39 40___ 41<a id="firstchild"></a> 42 43### firstChild 44 45**● firstChild**: *Node* 46 47First child of the node. 48 49___ 50<a id="lastchild"></a> 51 52### lastChild 53 54**● lastChild**: *Node* 55 56Last child of the node. 57 58___ 59<a id="name"></a> 60 61### name 62 63**● name**: *"root"* 64 65The name of the node. 66 67___ 68<a id="next"></a> 69 70### next 71 72**● next**: *Node* 73 74Next sibling. 75 76___ 77<a id="nextsibling"></a> 78 79### nextSibling 80 81**● nextSibling**: *Node* 82 83Same as [next](#next). [DOM spec](https://dom.spec.whatwg.org)-compatible alias. 84 85___ 86<a id="nodetype"></a> 87 88### nodeType 89 90**● nodeType**: *`number`* 91 92[DOM spec](https://dom.spec.whatwg.org/#dom-node-nodetype)-compatible node [type](#type). 93 94___ 95<a id="parent"></a> 96 97### parent 98 99**● parent**: *Node* 100 101Parent node. 102 103___ 104<a id="parentnode"></a> 105 106### parentNode 107 108**● parentNode**: *Node* 109 110Same as [parent](#parent). [DOM spec](https://dom.spec.whatwg.org)-compatible alias. 111 112___ 113<a id="prev"></a> 114 115### prev 116 117**● prev**: *Node* 118 119Previous sibling. 120 121___ 122<a id="previoussibling"></a> 123 124### previousSibling 125 126**● previousSibling**: *Node* 127 128Same as [prev](#prev). [DOM spec](https://dom.spec.whatwg.org)-compatible alias. 129 130___ 131<a id="type"></a> 132 133### type 134 135**● type**: *"root"* 136 137The type of the node. 138 139___ 140 141