js對數字進行四捨五入運算包括負數

admin發表於2017-03-31

本章節介紹一下如何利用javascript實現對數字的四捨五入運算。

下面就通過程式碼例項做一下相關介紹,希望能夠對需要的朋友有所幫助。

一.轉換為整數:

[JavaScript] 純文字檢視 複製程式碼
console.log(Math.round(3.56)); 
console.log(Math.round(-3.56));

使用Math.round()方法既可以實現轉換效果。

關於此方法可以參閱Math.round()一章節。

二.保留制定位數小數:

[JavaScript] 純文字檢視 複製程式碼
var num=3.1415926; 
console.log(num.toFixed(2));
console.log(num.toFixed(3));
console.log(num.toFixed(4));
console.log(num.toFixed(5));

關於toFixed()方法可以參閱javascript toFixed()一章節。


相關文章