标签: javascript math biginteger
如何为Math.exp()执行相等的BigInt,即e ^ argument?
Math.exp()
e ^ argument
我会尝试bigInt(Math.E).pow(2000)或类似但bigInt只处理整数,而不是浮点数。
bigInt(Math.E).pow(2000)
答案 0 :(得分:0)
我认为我实际上误解了我自己的问题 - 尽管我想要运行exp的值是使用BigInts计算的,但它仍然只是几位数。
Math.exp()实际上做了我想做的事。