PJPrathmesh Jagtapinprathmesh.hashnode.dev路Feb 5, 2024 路 7 min readCreating Tic-Tac-Toe Using Jotai and reactCreating a Simple Tic-Tac-Toe Game using React and Jotai for state management. What is Jotai? Jotai is a React state management libraryBuild state by combining atoms and renders are automatically optimized based on atom dependency. This solves the e...00
PJPrathmesh Jagtapinprathmesh.hashnode.dev路Jun 9, 2022 路 5 min readSimple Guide to React RouterWhat is React Router In Single Page applications, we have multiple views. We need to navigate to different views without refreshing the whole web page for this we use a Routing library such as React Router. React Router is a fully-featured client a...01A
PJPrathmesh Jagtapinprathmesh.hashnode.dev路Jun 4, 2022 路 4 min readHoisting and TDZWhat is hoisting When a JavaScript code runs it creates an execution context. which helps in determining what code is currently running and helps in allocating memory for every function and variable declaration. The mechanism of allocating memory fo...00
PJPrathmesh Jagtapinprathmesh.hashnode.dev路Jan 10, 2022 路 2 min readNullish Coalescing Operator (??) in JavascriptThe Nullish coalescing operator (??) is a logical operator that returns its right-hand side operand when its left-hand side operand is null or undefined and otherwise returns its left-hand side operand. const userName = null ?? 'prathmesh'; console.l...01N
PJPrathmesh Jagtapinprathmesh.hashnode.dev路Aug 13, 2021 路 2 min readJourney of #100daysofcodechallenge.A sudden Decision 5 months back I took a sudden decision to take up the #100daysofcodechallenge. And posted it on LinkedIn, There was no going back from here. At that time I was not fully aware of what I was entering into 馃槄 . The Journey and Learn...00