Const, var and let in javascript
Const
As you can makeout from the word const, const is a javascript keyword which is used to initialise a variable whose value cannot be changed i.e is constant throughout the whole codebase.
Var
Var is a javascript keyword which is used to declare...
pranavk11.hashnode.dev2 min read