ES6新增的math,Number方法
程序员文章站
2022-05-26 08:22:12
es6新增的math,number方法,下面总结了一些我觉得有用的
nunber.isinteger()判断是否为整数,需要注意的是1,和1.0都会被认为是整数...
es6新增的math,number方法,下面总结了一些我觉得有用的
nunber.isinteger()判断是否为整数,需要注意的是1,和1.0都会被认为是整数
console.log(number.isinteger(1.0))//true console.log(number.isinteger(1))//true console.log(number.isinteger("1"))//false console.log(number.isinteger("1.1"))//false
math.sign()判断是正数,负数,还是0
console.log(math.sign(1))//1 console.log(math.sign(-1))//-1 console.log(math.sign(0))//0 console.log(math.sign(-0))//0 console.log(math.sign(nan))//nan console.log(math.sign(undefined))//nan console.log(math.sign(null))//0
math.cbrt()计算一个数的立方根
console.log(math.cbrt(8))//2 math.hypot()返回所有参数的平方和的平方根 console.log(math.hypot(4,3))//25再开方结果为5
指数运算
console.log(2**2) //4 console.log(2**3) //8
总结
以上所述是小编给大家介绍的es6新增的math,number方法,希望对大家有所帮助
下一篇: Node.js 基础教程之全局对象
推荐阅读
-
使用webpack4编译并压缩ES6代码的方法示例
-
ES6使用export和import实现模块化的方法
-
PE还原Win7系统提示错误还原无法继续Error Number:(19010) 的原因及解决方法
-
Java学习笔记(5)--- Number类和Math 类,String类的应用,Java数组入门
-
比Math类库abs()方法性能更高的取绝对值方法介绍
-
SqlServer2005中使用row_number()在一个查询中删除重复记录的方法
-
sqlserver2005使用row_number() over分页的实现方法
-
jquery1.10给新增元素绑定事件的方法
-
ES6中Math对象新增的方法实例详解
-
JavaScript中Number.MAX_VALUE属性的使用方法