A few years ago, I was obsessed with reduce().
Every problem looked like a reduction problem.
Need a lookup table?
users.reduce(...)
Enter fullscreen mode
A few years ago, I was obsessed with reduce(). Every problem looked like a reduction problem. Need...
A few years ago, I was obsessed with reduce().
Every problem looked like a reduction problem.
Need a lookup table?
users.reduce(...)
Enter fullscreen mode

In my previous article, I wrote about one of the most underestimated functions in JavaScript:...

When I started learning React, I thought useEffect was the solution to almost everything. To derive...

Mastering State and References: A Deep Dive into useReducer and useRef for Professional...

One of the best ways to understand a programming concept is to build it yourself. Over the last...

When building React applications, we often use useState to manage state. But when the state logic...

Do you often experience over-optimization in React? Let's discuss the solution!