rajnishkatharotiya.hashnode.devServe your pages faster than ever in Next.jsPhoto by Windows on Unsplash Next.js is one of the frameworks of React.js which provides a bunch of features inbuilt in it and very popular to make an app server-side rendered. A brief about Server Side Rendering (aka SSR):- As the name speaks it it...Oct 4, 2020ยท9 min read
rajnishkatharotiya.hashnode.devRemove unwanted data from an object in javascriptPhoto by S O C I A L . C U T on Unsplash Remove particular data from an object is still an easy task to do. But guess you want to remove all data which not matched with your condition like an example, you want only positive values from the object and...May 24, 2020
rajnishkatharotiya.hashnode.devBest practice to handle input change requests with Google Custom SearchPhoto by Bench Accounting on Unsplash In many projects, we would have search input that returns a list (via any external APIs) of data related to the keyword you are entering into the input. so, what's your way to request continuous data from the sam...May 13, 2020
rajnishkatharotiya.hashnode.devHow to execute functions via pipeline?Photo by Van Tay Media on Unsplash Guess we have three functions, where one's result is being passed as second's input and so on. In this scenario how you will call all those functions? ( Share your thoughts on possible ways by commenting here ๐ค ...May 9, 2020
rajnishkatharotiya.hashnode.devSelect a nested value from the object with javascriptPhoto by John Schnobrich on Unsplash Selecting a nested value from an object is a common thing for any javascript application, and when you do deep nesting selection like (user.profile.address.city) it's risky and increases chances of throwing an exc...May 1, 2020