Math.round()方法的定義與用法: Math.round()方法將對參數進行四捨五入操作。 點選可參考更多相關Math物件方法與屬性。 語法結構: Math.round(x) 參數列表: 参数 描述 x 必需。必须是数值类型。 實例碼: 實例一: 複製程式碼 程式碼如下: console.log(Math.round(-2.1)); 輸出結果:-2。 實例二: 複製程式碼 程式碼如下: console.log(Math.round(-2.9)); 輸出結果:-3。 實例三: 複製程式碼 程式碼如下: console.log(Math.round(2.9)); 輸出結果:3。 以上內容是小編給大家介紹的JavaScript Math.round() 方法的完整敘述,希望大家喜歡。