Java Script in my Understanding
1) How to Declare the variables in JS ?
We use var, let, const keyword before declaring a variable.
Avoid using var because of issue in block scope and functional scope.
JS is kind enough to declare variable without keywords but it's not a best pract...
pramodambati.hashnode.dev2 min read