--- title: Local variable slug: Glossary/Local_variable tags: - Gültigkeitsbereich - Locale variable - Lokale Variable translation_of: Glossary/Local_variable --- <p>Eine {{glossary("variable")}} deren Namen an ihren {{glossary("value")}} – Wert – nur innerhalb eines {{Glossary("local scope")}} – lokalen Gültigkeitsbereichs – gebunden ist.</p> <h2 id="Example">Example</h2> <pre class="brush: js">var global = 5; //ist eine globale Variable function fun(){ var local = 10; //ist eine lokale Variable } </pre> <section id="Quick_links"> <ol> <li>General knowledge <ol> <li>{{interwiki("wikipedia", "Local variable", "Local variable")}} on Wikipedia</li> </ol> </li> </ol> </section>