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
90
91
92
93
94
|
---
title: Number.isInteger()
slug: Web/JavaScript/Reference/Global_Objects/Число/isInteger
tags:
- JavaScript
- Number
- Довідка
- метод
translation_of: Web/JavaScript/Reference/Global_Objects/Number/isInteger
---
<div>{{JSRef}}</div>
<p>Метод <strong><code>Number.isInteger()</code></strong> визначає, чи є передане значення цілим числом.</p>
<div>{{EmbedInteractiveExample("pages/js/number-isinteger.html")}}</div>
<h2 id="Синтаксис">Синтаксис</h2>
<pre class="syntaxbox notranslate">Number.isInteger(v<var>alue</var>)</pre>
<h3 id="Параметри">Параметри</h3>
<dl>
<dt><code>value</code></dt>
<dd>Значення для перевірки.</dd>
</dl>
<h3 id="Повертає">Повертає</h3>
<p>Значення типу {{jsxref("Boolean")}}, що вказує, чи є надане значення цілим числом.</p>
<h2 id="Опис">Опис</h2>
<p>Якщо параметр є цілим числом, повертає <code>true</code>, інакше вертає <code>false</code>. Якщо значення дорівнює {{jsxref("NaN")}} або {{jsxref("Infinity")}}, повертає <code>false</code>. Цей метод також повертає <code>true</code> для чисел з плаваючою крапкою, які можуть бути представлені як цілі.</p>
<h2 id="Поліфіл">Поліфіл</h2>
<pre class="brush: js notranslate">Number.isInteger = Number.isInteger || function(value) {
return typeof value === 'number' &&
isFinite(value) &&
Math.floor(value) === value;
};</pre>
<h2 id="Приклади">Приклади</h2>
<h3 id="Використання_isInteger">Використання isInteger</h3>
<pre class="brush: js notranslate">Number.isInteger(0); // true
Number.isInteger(1); // true
Number.isInteger(-100000); // true
Number.isInteger(99999999999999999999999); // 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
Number.isInteger(5.0); // true
Number.isInteger(5.000000000000001); // false
Number.isInteger(5.0000000000000001); // true
</pre>
<h2 id="Специфікації">Специфікації</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Specification</th>
</tr>
<tr>
<td>{{SpecName('ESDraft', '#sec-number.isinteger', 'Number.isInteger')}}</td>
</tr>
</tbody>
</table>
<h2 id="Підтримка_веб-переглядачами">Підтримка веб-переглядачами</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="Див._також">Див. також</h2>
<ul>
<li>Об'єкт {{jsxref("Число", "Number")}}, до якого належить цей метод.</li>
</ul>
|