Aditya Gupta

Aditya Gupta

JavaScript Operators (with Examples)

JavaScript Operators Thumbnail

Operator and operands are two keywords used in programming to perform multiple types of operation, this operation can be of different types such as addition, subtraction, multiplication, division, etc.  The operands are the entity to which the operation is performed.…

Jade Template Engine

Jade Template Engine Thumbnail

A template engine is used for server-side rendering to inject the data into the HTML template. A template engine can contain multiple variables, these variable is then replaced with the value sent from the server, these values taking the place…

JavaScript Variables: var, let, and const

JavaScript Variable Thumbnail

A variable is considered a container that can contain values of different types, these values can be numbers, characters, boolean, strings, etc. The value a container contains can access by its name and hence naming a variable is also an…

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…