Understanding var, let and const in JavaScript.
Jan 30, 2024 ยท 1 min read ยท 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...
Join discussion