Chrome 57.0.2987.110(64位)
math.js v3.10.0
使用下面的代码,我得到false
。我这样做不对吗?
math.config({'number': 'BigNumber'});
console.log(math.largerEq('120', '2'));
答案 0 :(得分:1)
您将值作为字符串传递,将它们作为数字值传递:
math.config({'number': 'BigNumber'});
console.log(math.largerEq(120, 2));
击> <击> 撞击> OP找到答案:
console.log(math.largerEq(math.bignumber('120'), math.bignumber('2')));
似乎math.config()没有正确地工作,只要接受值为BigNumber,就会理解洞察力。