码迷,mamicode.com
首页 > 其他好文 > 详细

ES6新增的math,Number方法

时间:2017-08-06 13:56:34      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:log   als   sig   负数   undefined   计算   运算   sign   注意   

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方法

标签:log   als   sig   负数   undefined   计算   运算   sign   注意   

原文地址:http://www.cnblogs.com/xiao-he-shang/p/7294489.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!