Why is not big(1) === big(1)

If they are considered numbers, they should be immutable and === should work: this has already been discussed (here for example).
The implementation detail is the underlying C library and for performance reason I understand that it is better to reuse the space allocated, making the type mutable.

1 Like