Scope in Javascript
Scope
The scope can be defined as the region in which a variable can be accessed. Outside this region, that variable is not available. In JavaScript, there are three types of scopes
Block Scope,
Function Scope,
Global Scope
Block Scope -
Block scop...
bilalmansuri.hashnode.dev2 min read