TypeScript: error when using parseInt() on a number

前端 未结 7 1102
心在旅途
心在旅途 2021-02-18 15:47

The JavaScript function parseInt can be used to force conversion of a given parameter to an integer, whether that parameter is a string, float number, number, etc.

7条回答
  •  一生所求
    2021-02-18 15:59

    A bit old but to put another way in to the pot:

    Math.trunc();

    see here for details.

提交回复
热议问题