🍄DocumentFragment
serves as a temporary parent when you want to manipulate a group of sibling nodes as a single unit.
DocumentFragment does not have a parent.
When inserting a DocumentFragment node into the document, the DocumentFragment itself is not inserted. Instead, all of its children are inserted.
Last updated