FKFarukh Khaninsate-management-in-react.hashnode.dev·Jan 13 · 3 min readState Management in ReactState management is one of the most important concepts in React. It defines how data is stored, updated, and shared across components to keep the UI in sync with user interactions and application logic. What is State in React? State is component-spec...00
FKFarukh Khaninfarukh-async-js.hashnode.dev·Dec 1, 2025 · 4 min readAsync JavaScriptCallbacks A callback is simply a function passed as an argument to another function.It is used when you want one function to run only after another has finished. Why do we need callbacks? JavaScript can do only one thing at a time. So if a task takes...00