1
"y851sq2vh4pf".to_i(36) #4504900070017571091

parseInt("y851sq2vh4pf",36) //4504900070017571300

如何在 Javascript 中实现 Ruby to_i(36) 函数?为什么行为不一样?

4

1 回答 1

6

Javascript 没有 64 位整数,它只有在(2 53 )double之后失去整数的准确性9007199254740992

使用像http://silentmatt.com/biginteger/这样的大数字库

于 2012-06-26T15:30:03.360 回答