So I\'m just curious if there is a short hand statement to this:
if(number < 0 ) bigInt.sign = 0; else bigInt.sign = 1;
I see all th
try this:
bigInt.sign = number < 0 ? 0 : 1