BigInt
の値をNumber
の値に変換したい状況に私は気づきました。私の値が safe integer であることを知っているので、どのように変換できますか?
Number
コンストラクターに渡すのと同じくらい簡単です。
const myBigInt = BigInt(10); // of course, `10n` also works
const myNumber = Number(myBigInt);
parseInt
またはNumber
を使用できます
const large = BigInt(309);
const b = parseInt(large);
console.log(b);
const n = Number(large);
console.log(n);