Svelte again
In the era of artificial intelligence, I’m going through Svelte basics! It’s been a while since I used Svelte, and it’s been a long while since I last read through tutorial for a language framework. This feels good, I am enjoying it! Here are some things that I wanted to take a note of: Mutation-compatible reactivity When I was using React years ago, I often wrote updates like: data = [...data, newData]; instead of: ...