If you've been putting off learning Redux because it seems confusing, start here. This freeCodeCamp guide is very clear and walks you through the mental model before the code. Stop dreading it and just start!
🧠 www.freecodecamp.org/news/redux-f...
#LearnToCode #Frontend #StateManagement
Posts by Saravanan
A very important explainer on the JavaScript Event Loop. It clarifies the async nature of JS in a simple, visually understandable way. Huge thanks to Philip Roberts for this gem.
An 11-year-old treasure that's still perfectly relevant.
www.youtube.com/watch?v=8aGh...
#JS #EventLoop #WebDevelopment
Can I hate math and still like coding??
This challenge is Math dependent... 😭
(atleast my solution is.)
Yet, streak's alive 🚀
.split("") fails with complex scripts. Use Intl.Segmenter instead!
Before:
"தமிழ்".split("") → ['த', 'ம', 'ி', 'ழ', '்']
After💡:
const segmenter = new Intl.Segmenter();
const segmentedStr = Array.from(segmenter.segment("தமிழ்")).map(s => s.segment);
// ['த', 'மி', 'ழ்']
Thanks to Wes Bos's YT shorts #JS
My last 2 months progress in React
Feels like:
[------ ]
Reality:
[-- ]
…I think this will never change 😅