BigInt.from constructor
- numvalue
Creates a big integer from the providedvalue number.
Examples:
var bigInteger = BigInt.from(1); // 1bigInteger = BigInt.from(0.9999); // 0bigInteger = BigInt.from(-10.99); // -10Implementation
external factory BigInt.from(num value);