ParentNode.append() vs Node.appendChild() for adding a couple elements (version: 0)
ParentNode.append() is more convenient. Is it also faster when needing to append several elements at once?
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