files/en-us/web/api/document/replacechildren/index.md
{{APIRef("DOM")}}
The Document.replaceChildren() method replaces the
existing children of a Document with a specified new set of children.
replaceChildren(param1)
replaceChildren(param1, param2)
replaceChildren(param1, param2, /* …, */ paramN)
param1, …, paramN
Document's existing children with. If no replacement objects are
specified, then the Document is emptied of all child nodes.None ({{jsxref("undefined")}}).
HierarchyRequestError {{DOMxRef("DOMException")}}
replaceChildren() provides a very convenient mechanism for emptying a document
of all its children. You call it on the document without any argument specified:
document.replaceChildren();
document.children; // HTMLCollection []
{{Specifications}}
{{Compat}}