# Interface: DocumentFragment ### Properties * [childNodes](#childnodes) * [children](#children) * [firstChild](#firstchild) * [lastChild](#lastchild) * [name](#name) * [next](#next) * [nextSibling](#nextsibling) * [nodeType](#nodetype) * [parent](#parent) * [parentNode](#parentnode) * [prev](#prev) * [previousSibling](#previoussibling) * [type](#type) --- ## Properties ### childNodes **● childNodes**: *Node[]* Same as [children](#children). [DOM spec](https://dom.spec.whatwg.org)-compatible alias. ___ ### children **● children**: *Node[]* Child nodes. ___ ### firstChild **● firstChild**: *Node* First child of the node. ___ ### lastChild **● lastChild**: *Node* Last child of the node. ___ ### name **● name**: *"root"* The name of the node. ___ ### next **● next**: *Node* Next sibling. ___ ### nextSibling **● nextSibling**: *Node* Same as [next](#next). [DOM spec](https://dom.spec.whatwg.org)-compatible alias. ___ ### nodeType **● nodeType**: *`number`* [DOM spec](https://dom.spec.whatwg.org/#dom-node-nodetype)-compatible node [type](#type). ___ ### parent **● parent**: *Node* Parent node. ___ ### parentNode **● parentNode**: *Node* Same as [parent](#parent). [DOM spec](https://dom.spec.whatwg.org)-compatible alias. ___ ### prev **● prev**: *Node* Previous sibling. ___ ### previousSibling **● previousSibling**: *Node* Same as [prev](#prev). [DOM spec](https://dom.spec.whatwg.org)-compatible alias. ___ ### type **● type**: *"root"* The type of the node. ___