以两个判断条件为例,直接上代码: var a = 3; var b = a === 1 ? '是1' : (a === 2 ? '是2' : '不是1也不是2') console.log(b); //不是1也不是2