Md Dilnawaz Alamcodedilsah.hashnode.devยทJan 30, 2024Understanding 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...var let