--- title: Local variable slug: Glossary/Local_variable tags: - Gültigkeitsbereich - Locale variable - Lokale Variable translation_of: Glossary/Local_variable ---
Eine {{glossary("variable")}} deren Namen an ihren {{glossary("value")}} – Wert – nur innerhalb eines {{Glossary("local scope")}} – lokalen Gültigkeitsbereichs – gebunden ist.
var global = 5; //ist eine globale Variable function fun(){ var local = 10; //ist eine lokale Variable }