Aug 13JavaScript groupBy: few exampleUsing Reducer : Here is an sample object which represent list of album const albums = [ { title: 'lady gaga', user: 1 }, { title: 'taylor swift', user: 2 }, { title: 'selena gomez', user: 1 } ]; const users = [ { id: 1, name: 'suvi'…JavaScript2 min readJavaScript2 min read
Mar 13React application building challenges that can be used in a coding round interview for a software developerBuild a job application tracking app with React that allows users to keep track of job applications and interviews. Build a todo list application with the ability to add, edit, and delete tasks, and mark them as complete. Create a weather app that displays the current weather and a five-day…React2 min readReact2 min read
Jan 15How Chatgpt can change blogger’s world, I asked “How to make money ?” here is 100 responseStart a business Invest in the stock market Create a YouTube channel Write and sell an e-book Offer freelance services Develop and sell an app Invest in real estate Participate in the gig economy (Uber, Lyft, TaskRabbit) Create and sell online courses Become a virtual assistant Start a blog and…ChatGPT3 min readChatGPT3 min read
Feb 27, 2022What is GraphQLGraphQL is a data query layer. What? GraphQL is a query language for your API, and a server-side runtime for executing queries using a type system you define for your data. https://graphql.org/ WHY? This layer sits on top of backend services to can query which ever filed is necessary for frontend. Backend API can have many purpose like…3 min read3 min read
May 17, 2021Algorithms Complexity EvaluationIf we have multiple ways to solve a particular problem statement, and if if need to find out which one is more efficient or less complex then: So, the question is: How to compare algorithms? The Big O Notation Big O Notation is a convenient way to express the worst-case scenario for an algorithm Thus, Big O Notation will be our definition…Algorithms6 min readAlgorithms6 min read
Dec 30, 2020CodemodWe have tens of thousands of JavaScript modules at Design System. When a developer makes breaking API changes to any of the design components (say Toggle), then consumer needs to transform/deprecate/update all of their JavaScript to consume that change. …Codemod2 min readCodemod2 min read