美文网首页
Js 三目运算符执行多个命令

Js 三目运算符执行多个命令

作者: Howie126313 | 来源:发表于2018-02-06 11:13 被阅读0次

    关于三目运算,符合某条件时,执行多个命令:
    (当之前的语句结尾时有‘ ; ’ 结尾时,三目运算的条件需要括号)
    type === 'ROOT' ? (this.nodeType = '根节点') && (console.log(222)): (this.nodeType = '子节点') && (console.log(111))

    或者

    type === 'ROOT' ? (this.nodeType = '根节点', console.log(222)) : this.nodeType = '子节点' , console.log(111)

    相关文章

      网友评论

          本文标题:Js 三目运算符执行多个命令

          本文链接:https://www.haomeiwen.com/subject/kqfgzxtx.html