js数字简写

let a = 10000000
let b = 1e7  // 7个0就是7   这是数字1,不是字母l
console.log(a==b) // true
原文地址:https://www.cnblogs.com/luguankun/p/14368258.html