JavaScript Interview Preparation Cheatsheet
What is Scope ?
The scope is the current context of execution in which values and expressions are accessible or can be referenced.
In JavaScript, the following scopes are available:
1. Global Scope - the outermost scope in a javascript file. The vari...
karanchauhan.hashnode.dev5 min read