React : Class vs Function ComponentsIn the last post, we learned about components. Here, We will learn about types of components. So, there are 2 types of components as you would have guessed by now. Class Functional You can do everything in using either of them. But, functional com...Feb 7, 2022·2 min read·47
Random Cropping/Scaling Images to Fit the Required Specs or Dimensions for Any kind of Uploads“If you don’t find the tools you need, better create them”Jan 3, 2022·2 min read·14
Uploading Files from React Native to a NodeJs Server using `fs.createWriteStream()`leveraging the power of streams using nodejs.Sep 23, 2021·3 min read·723
Deep Copy vs Shallow Copy in JavaScriptShallow Copy A new object is created that has an exact copy of the values in the original object. If the original object points to another object, a separate copy of that object is not created, rather a reference to that object is passed. const a = {...Aug 12, 2021·2 min read·316
The `??` Operator ( Nullish coalescing operator ) in javaScriptLet's learn Js, until AI takes over.Aug 7, 2021·2 min read·142
"Magic" using React Hooks. Yes, you read it right.Let's learn Js until AI takes over.Aug 5, 2021·4 min read·134