how to append a child to a specific index in a table js code example
Example: javascript appendchild at index
parentElement.insertBefore(newElement, parentElement.children[2]);
parentElement.insertBefore(newElement, parentElement.children[2]);