标签: javascript const
我有一个const numberOfComments,它是一个数组的大小,我想拥有另一个const riskByComments,如果{{1} }大于2,否则应为0。
const
numberOfComments
riskByComments
我知道我可以轻松地使用numberOfComments来做到这一点,但是我知道最好只使用let
let
答案 0 :(得分:6)
使用条件运算符:
const riskByComments = numberOfComments >2 ? 5 : 0;