Classes v/s Id's

Classes are NOT unique You can use the same class on multiple elements. You can use multiple classes on the same element. Any styling information that needs to be applied...

How to write a Clean Code?

There are two things - Programming and Good Programming. Programming is what we all have been doing. Now, is the time to do good programming. We all know that even...

Git has been Got

GIT is a tracking system of codes for web developer or software engineer made by the creator of Linux. It includes multiple directories that continuously changes as codes are added...

Passing value or reference??

A little introduction on pass by value v/s pass by reference. Pass By Value In Pass by Value, functions are called directly by passing the value of the variable in...

Requirements when creating a User Defined objects

While creating a user-defined objects there are two steps which are required: Defining the object type by writing a function. Creating an object with ‘new’ keyword. To define an object...