我知道javascript只会在有趣的事情发生之前处理特定范围的数字。
在javascript自动将其转换为指数表示法之前,必须显示多少个数字。
1111111111111111111111111111111111111111111111111111111111
// turns into 1.11111111111111E+57
//and
var num = 1.11111111111111E+57;
var s = num.toFixed(2);
//s equals 1111111111111110000000000000000000000000000000000000000000.00
// why are all the 1's lost and converted to 0's
你知道范围是什么
总共是20位数 或点20之前和之后的20
我真的不明白这个或为什么会发生
感谢