Local variable
A variable whose name is bound to its value only within a local scope.
Example
js
let global = 5; // A global variable
function fun() {
let local = 10; // A local variable
}
See also
- Local variable on Wikipedia
A variable whose name is bound to its value only within a local scope.
js
let global = 5; // A global variable
function fun() {
let local = 10; // A local variable
}