Javascript – How to render my web component before connectedCallback but after constructor?
I am making a custom web component using vanilla JavaScript and am having some issues with when the component should be rendered. At first I had my render() and hydrate() calls inside the constructor of the component. This worked well…