Html – Why would this web component not show?
I have some JS that creates a web component and then proceeds to add it to a very basic HTML page class WordCount extends HTMLParagraphElement { constructor() { // Always call super first in constructor super(); // count words in…