--- title: BigInt slug: Web/JavaScript/Reference/Global_Objects/BigInt translation_of: Web/JavaScript/Reference/Global_Objects/BigInt ---
BigInt
é um objeto nativo que fornece um modo de representar números inteiros maiores que 253, que é o maior número que o JavaScript consegue, com exatidão, representar com o tipo primitivo {{jsxref("Number")}}.
BigInt(value);
value
Observação: BigInt()
não é usado com o operador {{jsxref("Operators/new", "new")}}.
Um BigInt
é criado com a acrescentação de n
ao final de um inteiro literal — 10n
— ou chamando a função BigInt()
.
const theBiggestInt = 9007199254740991n; const alsoHuge = BigInt(9007199254740991); // ↪ 9007199254740991n const hugeString = BigInt("9007199254740991"); // ↪ 9007199254740991n const hugeHex = BigInt("0x1fffffffffffff"); // ↪ 9007199254740991n const hugeBin = BigInt("0b11111111111111111111111111111111111111111111111111111"); // ↪ 9007199254740991n
Isso é parecido com um {{jsxref("Number")}} em algumas partes, mas difere-se em alguns assuntos importantes — ele não pode ser usado com métodos no objeto {{jsxref("Math")}} e não pode ser misturado em operações ou qualquer instância de Number
.
{{jsxref("Number")}} e BigInt
não podem ser misturados em operações — eles devem ser manipulados com o mesmo tipo.
Tenha cuidado com a conversão e desconversão de valores, visto que a precisão de BigInt
pode ser perdida com a conversào para Number
.
Quando testado com typeof
, um BigInt
vai devolver "bigint":
typeof 1n === 'bigint'; // true typeof BigInt('1') === 'bigint'; // true
Quando envolvido em um Object
, um BigInt
vai ser considerado como um tipo normal de "object".
typeof Object(1n) === 'object'; // true
Os seguintes operadores podem ser usados com BigInt
s (ou com BigInt
s envolvidos em objetos): +
, `*
`, `-
`, `**
`, `%
` .
const previousMaxSafe = BigInt(Number.MAX_SAFE_INTEGER); // ↪ 9007199254740991 const maxPlusOne = previousMaxSafe + 1n; // ↪ 9007199254740992n const theFuture = previousMaxSafe + 2n; // ↪ 9007199254740993n, isso funciona agora! const multi = previousMaxSafe * 2n; // ↪ 18014398509481982n const subtr = multi – 10n; // ↪ 18014398509481972n const mod = multi % 10n; // ↪ 2n const bigN = 2n ** 54n; // ↪ 18014398509481984n bigN * -1n // ↪ –18014398509481984n
O operador /
também funciona com o esperado com números inteiros. No entanto, desde que esses sejam BigInt
s e não BigDecimal
s, essa operação vai arredondar para 0, o que significa que não vai retornar qualquer valor fracional.
Uma operação com um resultado fracional será arredondado com BigInt.
const expected = 4n / 2n; // ↪ 2n const rounded = 5n / 2n; // ↪ 2n, e não 2.5n
Um BigInt
não é estritamente igual a um {{jsxref("Global_Objects/Number", "Number")}}, mas é mais ou menos assim.
0n === 0 // ↪ false 0n == 0 // ↪ true
Um {{jsxref("Global_Objects/Number", "Number")}} e um BigInt
podem ser comparado normalmente.
1n < 2 // ↪ true 2n > 1 // ↪ true 2 > 2 // ↪ false 2n > 2 // ↪ false 2n >= 2 // ↪ true
Eles podem ser misturados em arrays e sorteados.
const mixed = [4n, 6, -12n, 10, 4, 0, 0n]; // ↪ [4n, 6, -12n, 10, 4, 0, 0n] mixed.sort(); // ↪ [-12n, 0, 0n, 10, 4n, 4, 6]
Observe que comparações com BigInt
s envolvidos em Object
atuam com outros objetos, indicando somente a igualdade onde a mesma instância do objeto é comparada.
0n === Object(0n); // false Object(0n) === Object(0n); // false const o = Object(0n); o === o // true
A BigInt
behaves like a {{jsxref("Global_Objects/Number", "Number")}} in cases where it is converted to a {{jsxref("Global_Objects/Boolean", "Boolean")}}: via the {{jsxref("Global_Objects/Boolean", "Boolean")}} function; when used with logical operators {{jsxref("Operators/Logical_Operators", "Logical Operators")}} ||
, `&&
`, and !
; or within a conditional test like an {{jsxref("Statements/if...else", "if statement")}}.
if (0n) { console.log('Hello from the if!'); } else { console.log('Hello from the else!'); } // ↪ "Hello from the else!" 0n || 12n // ↪ 12n 0n && 12n // ↪ 0n Boolean(0n) // ↪ false Boolean(12n) // ↪ true !12n // ↪ false !0n // ↪ true
BigInt.asIntN()
BigInt.asUintN()
BigInt
object.BigInt
instancesAll BigInt
instances inherit from BigInt.prototype. The prototype object of the BigInt constructor can be modified to affect all BigInt
instances.
{{page('/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt/prototype', 'Methods')}}
function isPrime(p) { for (let i = 2n; i * i <= p; i++) { if (p % i === 0n) return false; } return true; } // Takes a BigInt as an argument and returns a BigInt function nthPrime(nth) { let maybePrime = 2n; let prime = 0n; while (nth >= 0n) { if (isPrime(maybePrime)) { nth -= 1n; prime = maybePrime; } maybePrime += 1n; } return prime; } nthPrime(20n) // ↪ 73n