Right now, when you perform math between BigInts and regular numbers, it creates TypeErrors. While this makes sense for numbers with values after the decimal point, it does not make sense for Integers. For the Integer case, they should simply be cast to BigInts instead.
Right now, this is how addition works:
const a = BigInt(8) + 7
Uncaught TypeError: Cannot mix BigInt and other types, use explicit conversions
This is how I think it should work:
const a = BigInt(8) + 7;
const b = a===BigInt(15)
//b evaluates to true