TypeScript:字符串转换为数字

时间:2023-05-12 17:44:00

在TypeScript,String转换为Number有以下方式:

Number构造函数(推荐)

let n = Number('1234') // 1234
let nan = Number('abcd') // NaN

+号操作符

let n = +'1234' // 1234
let nan = +'abcd' // NaN

判断字符串能否转换为数组

当字符串不能转换为数字,得到的结果为NaN。我们可以基于这个特点来判断字符串能否转换为数字。

isNaN(Number('abcd'))
isNaN(+'abcd')