Sessions in PHP are a way to make data accessible across the various pages of an entire website. It is…
In our previous example, we saw how we can create a registration form using Node.js and MySQL. Using that same…
A registration form is used to collect data from potential users of your website. This is necessary, especially if you…
Modules are generally set of functions that you can include in your application. These could be built-in functions that are…
Created by a Joyent software engineer Ryan Dahl in 2009, Node.js is an open-source and cross-platform runtime environment for creating…
REST stands for REpresentational State Transfer. REST is a system that allows users to request information from a server via…
Inheritance is an important concept in Object Oriented Programming. Inheritance is the process whereby one class, also called the sub-class,…
Object Oriented Programming (OOP) is a way of writing code such that you can create different objects (also called "instances")…
Introduced in ES6 as a major update to the Object Oriented Programming concept in Javascript, Classes are templates for creating…
In JavaScript, null, undefined, and not defined are three distinct concepts that refer to different values or states. In this…