Well explained. Endless possibilities in such an easy concept. Waiting for next parts!
Easy examples, and an interesting read 💫
Excellent write-up. Very easy to understand.
nice and clean explanation
This is excellent information. I look forward to reading more of this series. 😎
Super nice and understandable explanation! Keep it up 🚀
raddevus
Software Developer Team Lead with 30 years of development experience.
Are you sure this code works?
const app = document.querySelector<HTMLDivElement>('#app')!;I think you need to remove <HTMLDivElement> & the ! right before the semicolon.
I think it is supposed to be:
const app = document.querySelector('#app');