In my code, I fairly frequently need to replace all children of a certain HTML container with a new list of children.
What is the fastest way to do this? My current appr
from the top answer, we could also use outerHTML to do it in one line.
container.innerHTML = newContainerElements.outerHTML