In JavaScript, var, let, and const are used to declare variables, but they behave differently in terms of scope, hoisting, and mutability.
Lets have a look at all 3 of them in depth. We will look into real life explaination of each of the 3 things, s...