setint bigint value in javascript code example
Example: javascript bigint
// There are two ways to create BigInt:
//1. add a suffix n to any number in JavaScript
const big = 1000000n; // 1000000n
//2. call the constructor BigInt(val) and pass in a numerical value
const bigN = BigInt(123) // 123n
//strings also work
const bigS = BigInt("234") // 234n
const bigHex = BigInt("0xffffffffffffffff") // 18446744073709551615n
const bigBin = BigInt("0b111") // 7n