Does parseDouble exist in JavaScript?

我的梦境 提交于 2019-12-17 10:52:04

问题


In JavaScript, I have a number which is 21 digits, and I want to parse it.

Does a parseDouble method exist in JavaScript?


回答1:


It's not possible to natively deal with a 21-digit precision number in JavaScript.

JavaScript only has one kind of number: "number", which is a IEEE-754 Double Precision ("double") value. As such, parseFloat in JavaScript is the equivalent of a "parse double" in other languages.

However, a number/"double" only provides 16 significant digits (decimal) of precision and so reading in a number with 21-digits will lose the 5 least significant digits1.

For more precision (or accuracy) a "big number" library must be used;

  • What is the standard solution in JavaScript for handling big numbers (BigNum)?

1 Information can be lost when encoding as an IEEE "double", which cannot encode all decimal values exactly, but that's another question..



来源:https://stackoverflow.com/questions/21278234/does-parsedouble-exist-in-javascript

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!