DifferentWaysToUseVariables.md - brainchildservices/curriculum GitHub Wiki
In JavaScript, we can declare a variable in different ways by using different keywords. Each keyword holds some specific reason or feature in JavaScript. Basically we can declare variables in three different ways by using var, let and const keyword. Each keyword is used in some specific conditions.
-
var : This keyword is used to declare variable globally. If you used this keyword to declare variable then the variable can accessible globally and changeable also. It is good for a short length of codes, if the codes get huge then you will get confused.
-
let : This keyword is used to declare variable locally. If you used this keyword to declare variable then the variable can accessible locally and it is changeable as well. It is good if the code gets huge.
-
const : This keyword is used to declare variable globally. If you used this keyword to declare variable then the variable can accessible globally and it is not changeable.