javascript實現浮點數四捨五入效果程式碼

antzone發表於2017-03-17

關於什麼是四捨五入是什麼這裡就不用介紹了,可以自己翻一下小學數學課本,如果還不明白,那就請關閉此頁,下面介紹一下如何利用javascript實現此功能,因為比較簡單,直接上程式碼。

程式碼如下:

[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));

具體可以參閱javascript toFixed()一章節。 

相關文章