在js中添加+是什么意思?

时间:2019-11-27 12:26:22

标签: javascript reactjs

reactjs中有一个以

开头的条件
+this.state.isCompleted

我们为什么要写+

1 个答案:

答案 0 :(得分:1)

是强制conversionnumber

const str = '1'
const bool = false
const fail = 'isNan?'

const num = +str
const numBool = +bool
const numFail = +fail

console.log(typeof num, typeof numBool, numFail)