Remove Child Elements From An HTML Element With JavaScript
const el = document.;
el.;
Old Notes
const parentElement = document.
Where alfa is the element to remove the children from
What Didn't Work
The MDN docs say to do this, but it didn't work for me. It wouldn't clear all the elements.
Not sure why.
(Thanks to i7 from Twitch chat for giving me the solution and saying me a non trivial amount of time)
-- end of line --
References
This is where I got the code that didn't work. Need to go back and figure out where the problem resides