js數字取整

數字取整 2.33333 => 2 7.1 普通版 const a = parseInt(2.33333) parseInt() 函數解析一個字符串參數,並返回一個指定基數的整數 (數學系統的基礎)。這個估計是直接取整最經常使用的方法了。 更多關於 parseInt() 函數能夠查看 MDN 文檔函數 7.2 進階版 const a = Math.trunc(2.33333) Math.trunc
相關文章
相關標籤/搜索