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 »

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 »