Author Archives: Mohd Anis

Exploring the Power of NestJS

Exploring the Power of NestJS

In the ever-evolving landscape of web application development, choosing the right framework for your backend can make all the difference. One such framework that has been gaining significant attention and popularity is NestJS. With its unique blend of modern JavaScript and TypeScript features, as well as its modular architecture inspired by Angular, NestJS has quickly Continue Reading »

Various Techniques to minimize code in React JS

There are several ways to minimize code in React JS.. Here are a few tips: Use functional components: Functional components are simpler and require less code than class components. They are also easier to read and understand. Use destructuring: Destructuring allows extracting specific values from objects or arrays. This can make your code more concise Continue Reading »

Hoisting in javaScript

Hoisting is a phenomenon in javaScript by which you can access variables and functions even before you have initialized them or you have put some value on them. you can access it without any error. Hoisting allows functions to be safely used in code before they are declared. for Example: var x=7; function getName(){ console.log(“hoisting Continue Reading »