13位是毫秒(Java默認(rèn)生成13位);10位是秒(PHP默認(rèn)生成的是10位)
2021-03-15
這次有了
console.log(0.1 + 0.2)
// 0.30000000000000004
console.log(0.1 + 0.2)
// 0.30000000000000004
2021-03-11
我的沒(méi)有小數(shù)點(diǎn):console.log(1.0 + 2.0) => 3
2021-03-11