Can I omit the else in an inline javascript if statement?

后端 未结 7 1384
鱼传尺愫
鱼传尺愫 2021-02-07 02:50

I\'m trying to use this and it doesn\'t appear to be working. I\'m guessing it\'s just not an option, but want to confirm. Is this valid?

(if_it_is) ? thats_cool         


        
7条回答
  •  渐次进展
    2021-02-07 03:25

    No, it's not valid.

    The conditional operator takes the form x ? y : z. The third operand is not like the else in an if, it always has to be there.

提交回复
热议问题