0 votes
in JavaScript by
What are the valid scopes of a variable in JavaScript?

1 Answer

0 votes
by

The scope of a variable is the region of your program in which it is defined. JavaScript variable will have only two scopes.

Global Variables − A global variable has global scope which means it is visible everywhere in your JavaScript code.

Local Variables − A local variable will be visible only within a function where it is defined. Function parameters are always local to that function.

Related questions

+1 vote
asked Feb 6, 2020 in JavaScript by rajeshsharma
0 votes
asked Oct 26, 2023 in JavaScript by DavidAnderson
...