Aditya Gupta

Aditya Gupta

JavaScript Object

JavaScript Object Thumbnail

JavaScript uses objects everywhere, it is a fundamental part of writing modern JavaScript code. JavaScript only has a few primitive data types(i.e. string, boolean, null and undefined, etc), and all the remaining data types are considered objects. Objects are non-primitive…

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…