Aditya Gupta

Aditya Gupta

What is Node.js?

What Is Node Js Thumbnail

Node.js was developed by Ryan Dahl in 2009. It is a JavaScript runtime built upon the V8 engine that uses Javascript for creating the server side. The server created using Node.js can interact with the operating system and file system.…

JavaScript null and undefined

JavaScript Null And Undefined Thumbnail

JavaScript is different from other programming languages in terms of data types, it is dynamically typed, allows changing the data type of a variable during runtime, it uses the concept of loose equality, i.e, it compares value regardless of what…

MongoDB Cursor in NodeJS

MongoDB Cursor In NodeJS Thumbnail

A MongoDB database has multiple collections. These collections can store millions of documents(data in MongoDB is called a document) and we can fetch all the data from a collection by performing a read operation using different methods like the collection.find(). These…