saurabhnative.hashnode.devPure and Impure FunctionsWanted to share an interesting point about pure and impure functions today. Pure Functions are functions that do not depend on or modify any external state. Similarly Impure Functions in React modify external state or DOM directly and depend on exter...Dec 15, 2024·1 min read
saurabhnative.hashnode.devImportance of Storybook in React App DevelopmentWhen working on enterprise-grade applications we often have a separate design system and well-defined rules about component usage throughout the entire application. This helps in making components consistent and makes it easy for new developers to co...Dec 1, 2024·2 min read
saurabhnative.hashnode.devCARS24 Frontend Interview Questions with Expert AnswersHello everyone, today we will cover some interview questions asked in Frontend Developer rounds at CARS24. CARS24 is an Indian multinational online marketplace for used cars headquartered in Gurgaon. The company is considered among the four major or...Dec 1, 2024·9 min read
saurabhnative.hashnode.devMastering Tricky Git Situations: Solutions to Common ChallengesHere’s an outline of the article: 1. Recovering a Deleted Branch Situation: Accidentally deleted a branch locally or remotely. Solution: Find the branch commit: git reflog Restore the branch: git checkout -b <branch_name> <commit_hash> 2. Undoing a C...Nov 24, 2024·2 min read
saurabhnative.hashnode.devUnderstanding How UPI Payments Work: A Behind-the-Scenes LookUPI payments have significantly eased our daily shopping experience. We don't need to search for exact change or keep too much cash because UPI allows to do payments at local kirana store to daily railway tickets as well. It has significantly improve...Nov 18, 2024·2 min read