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…

JavaScript Eval()

JavaScript Eval Thumbnail

The JavaScript eval() method can execute a statement, expression, or a group of statements and return its completion value if it exists. JavaScript eval() Method The eval() is a method of the JavaScript global object. This method takes a string…