DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript技巧 >> ES6新增的math,Number方法
ES6新增的math,Number方法
編輯:JavaScript技巧     

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方法,希望對大家有所幫助,如果大家有任何疑問歡迎給我留言,小編會及時回復大家的!

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved