Back
Blog
- JavaScript Proxy: A Powerful Metaprogramming Feature
JavaScript Proxy allows you to intercept and customize operations on objects, enabling powerful abstractions and data validation.
- Python Refresher: Revisiting the Fundamentals
This refresher covers Python fundamentals like integers, floats, strings, lists, and booleans, making it accessible for all programmers.
- Crash Course on Data Structures: A Comprehensive Guide
Explore essential data structures, their significance, and practical usage in this comprehensive guide.
- Sync state updates b/w 2 components that use a common hook
States defined in custom hooks are local to their use in every component. Meaning updating state in one component doesn't reflect in another.