What's the difference between var, let & const? Let's find out..
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...
vipulg.hashnode.dev2 min read