From 4b1a9203c547c019fc5398082ae19a3f3d4c3efe Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:41:15 -0500 Subject: initial commit --- files/de/glossary/local_variable/index.html | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 files/de/glossary/local_variable/index.html (limited to 'files/de/glossary/local_variable') diff --git a/files/de/glossary/local_variable/index.html b/files/de/glossary/local_variable/index.html new file mode 100644 index 0000000000..d0fcecb97b --- /dev/null +++ b/files/de/glossary/local_variable/index.html @@ -0,0 +1,29 @@ +--- +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.

+ +

Example

+ +
var global = 5; //ist eine globale Variable
+
+function fun(){
+    var local = 10; //ist eine lokale Variable
+}
+
+ + -- cgit v1.2.3-54-g00ecf