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