Local variable
Eine Variable, deren Name nur innerhalb eines lokalen Gültigkeitsbereichs an ihren Wert gebunden ist.
Beispiel
js
let global = 5; // A global variable
function fun() {
let local = 10; // A local variable
}
Siehe auch
- Local variable auf Wikipedia