Difference between 3 types of variables in JavaScript
There are 3 types of variables in javascript such as: in “var” you can declare var and assign its value more than one. But in “Let” you just declare the same variable more than one but not assign. Lastly, in ” const” not possible either declare nor assign same…