JavaScript 取整的幾種方法

  • Math.floor() 向下取整code

    Math.floor(3.141592654) // 3
  • Math.ceil() 向上取整數據

    Math.ceil(3.141592654) // 4
  • Math.round() 四捨五入co

    Math.round(3.141592654) // 3
  • parseInt() 去掉小數點和小數點後的部分

    parseInt(3.141592654) // 3
  • ~~ 將數據轉化爲Number類型

    ~~3.141592654 // 3
相關文章
相關標籤/搜索