Math.round() - MDN - Mozilla
文章推薦指數: 80 %
Math.round() Math.round() 函數回傳四捨五入後的近似值.Math.round(x) x 數字. 如果小數位的部分值大於0.5,這個值將會進位.如果小數位的部分值小於0.5,這個值將不會進位. 由於round()是靜態的方法,所以總是得這樣使用 Math.round(),而非作為Math物件的一個方法(Math並沒有建構子).//Returnsthevalue20 x=Math.round(20.49); //Returnsthevalue21 x=Math.round(20.5); //Returnsthevalue-