“Javascript Bigint” Kode Jawaban

Javascript Bigint

const theBiggestInt = 9007199254740991n
const alsoHuge = BigInt(9007199254740991) // 9007199254740991n
const hugeString = BigInt("9007199254740991") // 9007199254740991n
const hugeHex = BigInt("0x1fffffffffffff") // 9007199254740991n
const hugeBin = BigInt("0b11111111111111111111111111111111111111111111111111111") // 9007199254740991n
TC5550

Mengapa Bigint JS

Why BigInt ? - To represent integer values larger than 2^53
madhav

Javascript Bigint

// BigInt value
const value = 900719925124740998n;

// Adding two big integers
const value1 = value + 1n;
console.log(value1); // returns "900719925124740999n"
SAMER SAEID

Javascript Bigint

// BigInt value
const value1 = 900719925124740998n;

// Adding two big integers
const result1 = value1 + 1n;
console.log(result1); // "900719925124740999n"

const value2 = 900719925124740998n;

// Error! BitInt and number cannot be added
const result2 = value2 + 1; 
console.log(result2);
SAMER SAEID

Jawaban yang mirip dengan “Javascript Bigint”

Pertanyaan yang mirip dengan “Javascript Bigint”

Lebih banyak jawaban terkait untuk “Javascript Bigint” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya