diff options
| author | Florian Dieminger <me@fiji-flo.de> | 2021-02-11 18:20:22 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-11 18:20:22 +0100 |
| commit | 999e51572c093be901d6c8f942feb76038ae940c (patch) | |
| tree | 0b2242d6df50748abf3f11c717211e8bbcf3d45e /files/de/web/javascript/reference/errors/no_properties/index.html | |
| parent | 747e709ad97c5782af29688f52c8105c08d9a323 (diff) | |
| parent | 12b585b8e60a2877ff64dc6dc5ab058c43652f47 (diff) | |
| download | translated-content-999e51572c093be901d6c8f942feb76038ae940c.tar.gz translated-content-999e51572c093be901d6c8f942feb76038ae940c.tar.bz2 translated-content-999e51572c093be901d6c8f942feb76038ae940c.zip | |
Merge pull request #55 from fiji-flo/unslugging-de
Unslugging de
Diffstat (limited to 'files/de/web/javascript/reference/errors/no_properties/index.html')
| -rw-r--r-- | files/de/web/javascript/reference/errors/no_properties/index.html | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/files/de/web/javascript/reference/errors/no_properties/index.html b/files/de/web/javascript/reference/errors/no_properties/index.html new file mode 100644 index 0000000000..0897961a8e --- /dev/null +++ b/files/de/web/javascript/reference/errors/no_properties/index.html @@ -0,0 +1,41 @@ +--- +title: 'TypeError: "x" has no properties' +slug: Web/JavaScript/Reference/Errors/No_properties +tags: + - Errors + - JavaScript + - TypeError +translation_of: Web/JavaScript/Reference/Errors/No_properties +original_slug: Web/JavaScript/Reference/Fehler/No_properties +--- +<div>{{jsSidebar("Errors")}}</div> + +<h2 id="Fehlermeldung">Fehlermeldung</h2> + +<pre class="syntaxbox">TypeError: null has no properties +TypeError: undefined has no properties +</pre> + +<h2 id="Fehlertyp">Fehlertyp</h2> + +<p>{{jsxref("TypeError")}}.</p> + +<h2 id="Was_ist_falsch_gelaufen">Was ist falsch gelaufen?</h2> + +<p>Weder {{jsxref("null")}} noch {{jsxref("undefined")}} besitzen Eigenschaften auf die man zugreifen könnte.</p> + +<h2 id="Beispiele">Beispiele</h2> + +<pre class="brush: js example-bad">null.foo; +// TypeError: null has no properties + +undefined.bar; +// TypeError: undefined has no properties +</pre> + +<h2 id="Siehe_auch">Siehe auch</h2> + +<ul> + <li>{{jsxref("null")}}</li> + <li>{{jsxref("undefined")}}</li> +</ul> |
