Returns the maximum of two BigInt values.
max(1n, 2n);// 2n
function max(a: bigint, b: bigint): bigint;
The first BigInt value.
let a: bigint;
The second BigInt value.
let b: bigint;
let returnType: bigint;
The larger of the two BigInt values.