Ninnka

Results 2 comments of Ninnka

@roro4ever 感谢分享,但是我在v8(chrome和node的REPL环境下)下测试了`Math.pow(2, 53) + 3`的到的结果是`9007199254740996`,而不是`9007199254740994`。开始我以为是v8的处理方式不同,我又在python v2.7下测试,得到的结果还是`9007199254740996`,在java中也是得到`9007199254740996` 于是,我按照真实计算得出的结果继续算下去: ``` > Math.pow(2, 53) + 6 9007199254740996 --> E=53,M=1.000...0110 (50个0+2个1+1个0,实际存储50个0+2个1) > Math.pow(2, 53) + 7 9007199254741000 --> E=53,M=1.000...0111 (50个0+2个1+1个1,实际存储49个0+1个1+2个0) > Math.pow(2, 53) +...

@JamieMason Could you help me check and merge pr?