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…