var vs let in Javascript
What is var and let?
Both are keywords used for declaring variables. In earlier versions of Javascript, the "var" keyword is mostly not used after the introduction of the "let" keyword.
Function scope and Block scope:
Variables declared with "var" ke...
mycodingjourneyy.hashnode.dev2 min read