您好,登錄后才能下訂單哦!
這篇文章主要介紹JavaScript進行數值取整的示例分析,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
js取整數的方法:1、通過“Math.trunc()”方法去除數字的小數部分,保留整數部分;2、通過“Math.round()”方法返回一個數字四舍五入后的整數部分;3、通過“Math.ceil()”方法實現向上取整等等。
JavaScript進行數值取整:
一、Math.trunc()
1、定義
Math.trunc()方法去除數字的小數部分,保留整數部分。
2、語法
Math.trunc(value)
3、示例
console.log(Math.trunc(2.01)); // 2 console.log(Math.trunc(2.9)); // 2 console.log(Math.trunc('0.22')); // 0 console.log(Math.trunc(-1.22)); // -1 console.log(Math.trunc(-1.56)); // -1 console.log(Math.trunc(true)); // 1 console.log(Math.trunc(undefined)); // NaN
二、Math.round()
1.定義
Math.round()方法返回一個數字四舍五入后的整數部分。
2、語法
Math.round(value)
3、示例
console.log(Math.round(2.01)); // 2 console.log(Math.round(2.9)); // 3 console.log(Math.round('0.22')); // 0 console.log(Math.round(-1.22)); // -1 console.log(Math.round(-1.56)); // -2 console.log(Math.round(true)); // 1 console.log(Math.round(undefined)); // NaN
三、Math.ceil()
1、定義
Math.ceil()方法返回一個大于或等于數字的最小整數,即向上取整。
2、語法
Math.ceil(value)
3、示例
console.log(Math.ceil(2.01)); // 3 console.log(Math.ceil(2.9)); // 3 console.log(Math.ceil('0.22')); // 1 console.log(Math.ceil(-1.22)); // -1 console.log(Math.ceil(-1.56)); // -1 console.log(Math.ceil(true)); // 1 console.log(Math.ceil(undefined)); // NaN
四、Math.floor()
1、定義
Math.floor()方法返回一個小于或等于數字的最小整數,即向下取整。
2、語法
Math.floor(value)
3、示例
console.log(Math.floor(2.01)); // 2 console.log(Math.floor(2.9)); // 2 console.log(Math.floor('0.22')); // 0 console.log(Math.floor(-1.22)); // -2 console.log(Math.floor(-1.56)); // -2 console.log(Math.floor(true)); // 1 console.log(Math.floor(undefined)); // NaN
以上是“JavaScript進行數值取整的示例分析”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。