manpreet404.hashnode.devPromises and Async-Await handling—InitialAsync Programming Asynchronous JavaScript allows non-blocking execution by delegating long-running tasks to the runtime environment and handling their results later through callbacks, promises, or async/await—keeping applications responsive a...Feb 17·2 min read
manpreet404.hashnode.devProp Drilling — Simple ExplanationProp drilling is when we pass data from a parent component to a deeply nested child component through multiple intermediate components, even though those intermediate components do not use the data themselves // React Example with Prop Drilling impo...Feb 16·1 min read