blob: c1dd069e56b78f6027be730c1e317e70b0e9f60a (
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() constructor
slug: Web/JavaScript/Reference/Global_Objects/Число/Number
tags:
- JavaScript
- Number
- Довідка
- Конструктор
translation_of: Web/JavaScript/Reference/Global_Objects/Number/Number
---
<div>{{JSRef}}</div>
<p>Конструктор <strong><code>Number()</code> </strong>створює об'єкт {{jsxref("Число", "Number")}}.</p>
<h2 id="Синтаксис">Синтаксис</h2>
<pre class="brush: js notranslate">new Number(<var>value</var>)
</pre>
<h3 id="Параметри">Параметри</h3>
<dl>
<dt><code><var>value</var></code></dt>
<dd>Числове значення об'єкта, що створюється.</dd>
</dl>
<h2 id="Приклади">Приклади</h2>
<h3 id="Створення_обєктів_Number">Створення об'єктів Number</h3>
<pre class="brush: js notranslate">const a = new Number('123'); // a === 123 дорівнює false
const b = Number('123'); // b === 123 дорівнює true
a instanceof Number; // дорівнює true
b instanceof Number; // дорівнює false</pre>
<h2 id="Специфікації">Специфікації</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Специфікація</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('ESDraft', '#sec-number-constructor', 'Number constructor')}}</td>
</tr>
</tbody>
</table>
<h2 id="Сумісність_з_веб-переглядачами">Сумісність з веб-переглядачами</h2>
<p>{{Compat("javascript.builtins.Number.Number")}}</p>
<h2 id="Див._також">Див. також</h2>
<ul>
<li>{{jsxref("NaN")}}</li>
<li>Глобальний об'єкт {{jsxref("Math")}}</li>
<li>Цілі числа з довільною точністю: {{jsxref("BigInt")}}</li>
</ul>
|