Checks if a BigFloat is a NaN value (not a number).
BigFloat.isNaN(value)
value
The BigFloat value.
Returns true if the BigFloat is NaN, false otherwise.
BigFloat.isNaN(BigFloat.asin(-2))
true
BigFloat.isNaN(1l)
false
BigFloat.isNaN("a string")
false
// BigFloat has a different NaN value from the Number's NaN:
BigFloat.isNaN(NaN)
false