aboutsummaryrefslogtreecommitdiff
path: root/files/pl/web/javascript/reference/global_objects/number/isinteger/index.html
blob: 5e11d160c85499938cef76dd931f21c772817d2a (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
---
title: Number.isInteger()
slug: Web/JavaScript/Reference/Global_Objects/Number/isInteger
translation_of: Web/JavaScript/Reference/Global_Objects/Number/isInteger
original_slug: Web/JavaScript/Referencje/Obiekty/Number/isInteger
---
<div>{{JSRef}}</div>

<p>Metoda <strong><code>Number.isInteger()</code></strong> sprawdza czy wpisana wartość jest liczbą całkowitą.</p>

<h2 id="Syntax">Syntax</h2>

<pre class="syntaxbox">Number.isInteger(v<var>alue</var>)</pre>

<h3 id="Parametry">Parametry</h3>

<dl>
 <dt><code>zmienna</code></dt>
 <dd>Zmienna będzie testowana jako liczba.</dd>
</dl>

<h3 id="Zwracana_wartość">Zwracana wartość</h3>

<p>Metoda zwraca wartość typu {{jsxref("Boolean")}}.</p>

<h2 id="Opis">Opis</h2>

<p>Jeśli sprawdzana zmienna jest liczbą całkowitą metoda zwraca <code>true</code>, w innym przypadku zwraca <code>false</code>. Jeśli zmienna jest typu {{jsxref("NaN")}} lub spoza zakresu metoda zwraca <code>false</code>.</p>

<h2 id="Przykłady">Przykłady</h2>

<pre class="brush: js">Number.isInteger(0);         // true
Number.isInteger(1);         // true
Number.isInteger(-100000);   // true

Number.isInteger(0.1);       // false
Number.isInteger(Math.PI);   // false

Number.isInteger(NaN);       // false
Number.isInteger(Infinity);  // false
Number.isInteger(-Infinity); // false
Number.isInteger('10');      // false
Number.isInteger(true);      // false
Number.isInteger(false);     // false
Number.isInteger([1]);       // false
</pre>

<h2 id="Polyfill">Polyfill</h2>

<pre class="brush: js">Number.isInteger = Number.isInteger || function(value) {
  return typeof value === 'number' &amp;&amp;
    isFinite(value) &amp;&amp;
    Math.floor(value) === value;
};
</pre>

<h2 id="Dokumentacja">Dokumentacja</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Status</th>
   <th scope="col">Comment</th>
  </tr>
  <tr>
   <td>{{SpecName('ES6', '#sec-number.isinteger', 'Number.isInteger')}}</td>
   <td>{{Spec2('ES6')}}</td>
   <td>Initial definition.</td>
  </tr>
  <tr>
   <td>{{SpecName('ESDraft', '#sec-number.isinteger', 'Number.isInteger')}}</td>
   <td>{{Spec2('ESDraft')}}</td>
   <td> </td>
  </tr>
 </tbody>
</table>

<h2 id="Kompatybilne_przegladarki">Kompatybilne przegladarki</h2>

<p class="hidden">The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>

<p>{{Compat("javascript.builtins.Number.isInteger")}}</p>

<h2 id="Sprawdź_również">Sprawdź również</h2>

<ul>
 <li>Metoda ta należy do klasy {{jsxref("Number")}}.</li>
</ul>