美文网首页
es6-数值扩展

es6-数值扩展

作者: ysdyyy | 来源:发表于2020-01-19 17:24 被阅读0次
    • 二进制写法:0b
    • 八进制写法:0o
    • Number.isFinite Number.isNan
    • Number.parseInd Number.parseFloat
    • Number.isInteger
    • Number.EPSILOW 表示1与大于1的最小浮点数之间的差
    • Number.isSafeInteger
    • Math.trunc 去除一个数的小数部分
    • Math.sign 判断数到底是正数、负数、还是零
    • Math.cbrt 立方根
    • Math.clz32 转化为32位无符整数的形式,然后返回值里面有多少前导的0
    • Math.imul fround hypot
    • Math.expm1 log1p log10 log2
    • 指数运算符** :2**2// 4
    • BigInt数组类型
    1234 // 普通整数
    1234n // BigInt
    1n === 1 // false
    typeof 1n // bigint
    

    相关文章

      网友评论

          本文标题:es6-数值扩展

          本文链接:https://www.haomeiwen.com/subject/urorzctx.html