简体   繁体   中英

How do we convert scientific notation to number in Javascript

So if I do 712569312664357328695151392 + 8100824045303269669937 I want the result to be:

712577413488402631964821329

But instead I have

7.125774134884027e+26

let a = 712569312664357328695151392;
let b = 8100824045303269669937;

(BigInt(a) + BigInt(b)).toString() will give you your expected result.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM