blob: dec4e0cc1d1dad6031cccb73bbd764ac96e9d641 (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
---
title: Number.NaN
slug: Web/JavaScript/Reference/Global_Objects/Number/NaN
tags:
- JavaScript
- Number
- Property
translation_of: Web/JavaScript/Reference/Global_Objects/Number/NaN
---
<div>{{JSRef}}</div>
<p>Die <strong><code>Number.NaN</code></strong> Eigenschaft repräsentiert Not-A-Number (keine Nummer). Sie ist identisch zu {{jsxref("NaN")}}.</p>
<div>{{EmbedInteractiveExample("pages/js/number-nan.html")}}</div>
<p>Die Eigenschaft <code>Number.NaN</code> ist statisch, weshalb kein {{jsxref("Number")}} Objekt erstellt werden muss.</p>
<p>{{js_property_attributes(0, 0, 0)}}</p>
<h2 id="Spezifikationen">Spezifikationen</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Spezifikation</th>
<th scope="col">Status</th>
<th scope="col">Kommentar</th>
</tr>
<tr>
<td>{{SpecName('ES1')}}</td>
<td>{{Spec2('ES1')}}</td>
<td>
<p>Initiale Definition. Implementiert in JavaScript 1.1.</p>
</td>
</tr>
<tr>
<td>{{SpecName('ES5.1', '#sec-15.7.3.4', 'Number.NaN')}}</td>
<td>{{Spec2('ES5.1')}}</td>
<td> </td>
</tr>
<tr>
<td>{{SpecName('ES6', '#sec-number.nan', 'Number.NaN')}}</td>
<td>{{Spec2('ES6')}}</td>
<td> </td>
</tr>
<tr>
<td>{{SpecName('ESDraft', '#sec-number.nan', 'Number.NaN')}}</td>
<td>{{Spec2('ESDraft')}}</td>
<td> </td>
</tr>
</tbody>
</table>
<h2 id="Browserkompatibilität">Browserkompatibilität</h2>
<p>{{Compat("javascript.builtins.Number.NaN")}}</p>
<h2 id="See_also" name="See_also">Siehe auch</h2>
<ul>
<li>Das globale {{jsxref("NaN")}} Objekt.</li>
<li>Das {{jsxref("Number")}} Objekt.</li>
</ul>
|