Back to Content

Local variable

files/en-us/glossary/local_variable/index.md

latest328 B
Original Source

A {{glossary("variable")}} whose name is bound to its {{glossary("value")}} only within a {{Glossary("local scope")}}.

Example

js
let global = 5; // A global variable

function fun() {
  let local = 10; // A local variable
}

See also