Big numbers: when 64 bits aren't enough
JavaScript's normal Number type loses precision above 2^53. BigInt removes that limit and lets you compute factorials, cryptographic keys, and astronomically large sums exactly.
Common use cases: RSA-style key arithmetic, combinatorics (100!), cryptocurrency token math (18-decimal places), and Project-Euler-style puzzles.