blob: 61315c551180d64b2ececd87bb4175e13a85c81e (
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
|
---
title: BigInt.asIntN()
slug: Web/JavaScript/Reference/Global_Objects/BigInt/asIntN
tags:
- BigInt
- JavaScript
- Méthode
- Reference
translation_of: Web/JavaScript/Reference/Global_Objects/BigInt/asIntN
original_slug: Web/JavaScript/Reference/Objets_globaux/BigInt/asIntN
---
<p>{{JSRef}}</p>
<p>La méthode statique <strong><code>BigInt.asIntN()</code></strong> permet d'écréter un nombre <code>BigInt</code> pour obtenir un entier signé entre 2<sup>largeur-1</sup> et 2<sup>largeur-1</sup>-1.</p>
<div>{{EmbedInteractiveExample("pages/js/bigint-asintn.html")}}</div>
<p class="hidden">Le code source de cet exemple interactif est disponible dans un dépôt GitHub. Si vous souhaitez contribuer à ces exemples, n'hésitez pas à cloner <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> et à envoyer une <em>pull request</em> !</p>
<h2 id="Syntaxe">Syntaxe</h2>
<pre class="syntaxbox">var <var>resultat</var> = BigInt.asIntN(<var>largeur</var>, <var>bigint</var>);</pre>
<h3 id="Paramètres">Paramètres</h3>
<dl>
<dt><code>largeur</code></dt>
<dd>La quantité de bits disponible pour stocker l'entier.</dd>
<dt><code>bigint</code></dt>
<dd>L'entier qu'on souhaite stocker sur le nombre de bits indiqués.</dd>
</dl>
<h3 id="Valeur_de_retour">Valeur de retour</h3>
<p>La valeur de <code>bigint</code> modulo 2<sup><code>largeur</code></sup> comme entier signé.</p>
<h2 id="Exemples">Exemples</h2>
<p>La méthode <code>BigInt.asIntN()</code> peut être utile pour rester dans une arithmétique sur 64 bits :</p>
<pre class="brush: js">const max = 2n ** (64n - 1n) - 1n;
BigInt.asIntN(64, max);
// ↪ 9223372036854775807n
BigInt.asIntN(64, max + 1n);
// ↪ -9223372036854775807n
// négatif car dépassement sur le nombre de bits
</pre>
<h2 id="Spécifications">Spécifications</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Spécification</th>
<th scope="col">État</th>
</tr>
<tr>
<td><a href="https://tc39.github.io/proposal-bigint/#sec-bigint.asintn">BigInt proposal</a></td>
<td>Proposition de niveau 3.</td>
</tr>
</tbody>
</table>
<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
<p>{{Compat("javascript.builtins.BigInt.asIntN")}}</p>
<h2 id="Voir_aussi">Voir aussi</h2>
<ul>
<li>{{JSxRef("BigInt")}}</li>
<li>{{JSxRef("BigInt.asUintN()")}}</li>
</ul>
|