BigInt.asUintN()
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2020.
La méthode statique BigInt.asUintN()
permet d'écréter un BigInt
pour ramener sa valeur sur un entier non-signé entre 0 et 2^(largeur)-1.
Exemple interactif
Syntaxe
js
var résultat = BigInt.asUintN(largeur, bigint);
Paramètres
Valeur de retour
La valeur de bigint
modulo 2^largeur
comme un entier non signé.
Exemples
La méthode BigInt.asUintN()
peut s'avérer utile pour rester dans une arithmétique exprimée sur 64 bits .
js
const max = 2n ** 64n - 1n;
BigInt.asUintN(64, max);
// ↪ 18446744073709551615n
BigInt.asUintN(64, max + 1n);
// ↪ 0n
// zéro en raison du dépassement
Spécifications
Specification |
---|
ECMAScript Language Specification # sec-bigint.asuintn |
Compatibilité des navigateurs
BCD tables only load in the browser