blob: d0fcecb97b846063a050f9444eda4898e64b1b2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
---
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 class="Quick_links" id="Quick_Links">
<ol>
<li>General knowledge
<ol>
<li>{{interwiki("wikipedia", "Local variable", "Local variable")}} on Wikipedia</li>
</ol>
</li>
</ol>
</section>
|