What's the difference between var, let & const? Let's find out..
Jan 15, 2022 · 2 min read · With ES2015(ES6) alot of new features were introduced, and out of them let and const also came into picture. Let's start with var keyword Scope of var Scope basically means from where we can access the variable. var is gloabal and function scoped. Gl...
Join discussion