Closed faheel closed 6 years ago
Performing binary operations on integers or strings with a BigInt object as the second operand should return a BigInt:
BigInt
big_int_1 = 5 + big_int_2; big_int_1 = "5" + big_int_2; // similarly for all other binary arithmetic and relational operators
Closed in commits e7bcce9 and c5a9e77.
Performing binary operations on integers or strings with a
BigInt
object as the second operand should return aBigInt
: