Understanding var, let and const in JavaScript.
Var :
var in JavaScript is used to declare global variable. Which can be accessed by any scope means local or global scope. 👍
Any variable which is declared with the help of var is mutable and can be changed or updated with the time. It can also rea...
codedilsah.dev1 min read