🥦
[TypeScript] 非常に大きな整数はbigint型を使う
はじめに
この記事では、TypeScriptのbigint型 をまとめております。
参考資料
結論
1. 安全な整数の最小値を扱う
// 安全な整数の最小値
const num:bigint = -2 ** 53
2. 安全な整数の最大値を扱う
// 安全な整数の最大値
const num:bigint = 2 ** 53
3. bigintで小さい値を扱う
// Type 'number' is not assignable to type 'bigint'.
const num:bigint = 100
Discussion