📄️ Nodejs - Getting started
Introduction about NodeJS
📄️ var, let, and const in javaScript
In JavaScript, variables can be declared using three different methods:
📄️ Operators in javascript
There are different types of JavaScript operators:
📄️ Array in javascript
The Array object, as with arrays in other programming languages, enables storing a collection of multiple items under a single variable name, and has members for performing common array operations.
📄️ Object in javascript
In computer science, an object is a value in memory which is possibly referenced by an identifier. In JavaScript, objects are the only mutable values. Functions are, in fact, also objects with the additional capability of being callable.
📄️ Conditional statements in javascript
Very often when you write code, you want to perform different actions for different decisions.