BigInt 2/3
BigInt
with Math Operators
We can use most of the math operators with BigInt
just like we do with numbers, for example.
9
1
console.log(11n + 22n);
1console.log(11n + 22n);
A BigInt number and a regular number cannot be used together for performing some arithmetic operations, for example.
9
1
console.log(100n + 200);
1console.log(100n + 200);
For this, we have to convert the number into a BigInt number explicitly by calling the BigInt()
, for example.
9
1
2
3
let bigint = 100n;
let number = 200;
console.log(bigint + BigInt(number));
123let bigint = 100n; let number = 200; console.log(bigint + BigInt(number));
Tarea
Swipe to start coding
A BigInt number named bigNumber
with the assigned value of 12345n
has been given to you. Your task is to:
- Create a new variable named
number
and store55
in it. - Convert the
number
to a BigInt number using theBigInt()
function and store the result again innumber
. - Display the sum of these values.
Solución
9
1
2
3
4
let bigNumber = 12345n;
let number = 55;
number = BigInt(number);
console.log(bigNumber + number);
¿Todo estuvo claro?
¡Gracias por tus comentarios!
Sección 3. Capítulo 25
9
1
2
let bigNumber = 12345n;
Pregunte a AI
Pregunte lo que quiera o pruebe una de las preguntas sugeridas para comenzar nuestra charla