append() vs appendChild() for moving a couple elements (version: 0)
ParentNode.append() is more convenient. Is it also faster when moving several elements at once from a parent A to a parent B?
https://developer.mozilla.org/en-US/docs/Web/API/Element/append
https://developer.mozilla.org/en-US/docs/Web/API/Node/appendChild
Comparing performance of: append() vs appendChild() vs append() with apply() vs appendChild() with loop