Advertisement · 728 × 90

Posts by Saravanan

Preview
Redux for Beginners – The Brain-Friendly Guide to Learning Redux In this Redux for Beginners guide, we're going to: Learn about the different parts of Redux and how they work together Learn how to fetch data from an API using Redux Learn how to use Redux Toolkit to...

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

4 months ago 2 0 0 0
What the heck is the event loop anyway? | Philip Roberts | JSConf EU
What the heck is the event loop anyway? | Philip Roberts | JSConf EU YouTube video by JSConf

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

4 months ago 3 0 0 0

Can I hate math and still like coding??

This challenge is Math dependent... 😭
(atleast my solution is.)

Yet, streak's alive 🚀

4 months ago 0 0 0 0

.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

5 months ago 2 0 0 0

My last 2 months progress in React

Feels like:
[------ ]

Reality:
[-- ]

…I think this will never change 😅

5 months ago 2 0 0 0