Re: [whatwg/dom] Proposal: ParentNode.empty() (#478)

```removeChildren()``` has more meaning as it opens the idea to add ```appendChildren(NodeList)``` instead of using, e.g.
```javascript
[...document.querySelectorAll('div')].forEach(node => document.body.appendChild(node));
```
I know there are many ways to do append/remove of NodeList, but with these functions implementers may choose the best way to perform ```removeChildren``` and ```appendChildren```.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/dom/issues/478#issuecomment-318048364

Received on Wednesday, 26 July 2017 13:10:50 UTC