A Beginner's Guide to var, let, and const in JavaScript
A simple explanation of var let and const in JavaScript
What is var?
In JavaScript, var is a keyword used to declare variables. Variables declared with var are function-scoped, meaning they can be accessed anywhere within the function they were decl...
theshrish.hashnode.dev4 min read