1.什么是三目运算符?
三目运算符是一种固定的运算格式,它的作用是简化“ if ”操作。它的语法格式为“ a ? b : c ”,a为条件,是布尔表达式,如果 a 为 true ,该表达式返回 b ,否则返回 c 。
2.三目运算符的使用
在项目开发中,三目运算符可以用来对某个变量是否有值的情况进行处理,比如:
/*判断project是否有值,如果有,则返回project,如果没有,则返回“--”进行占位
*/
project ? project : '--'
三目运算符还可以进行多重判断,比如:
/*如果chargingMode 值为0,代表按需计费,值为1代表周期计费,否则返回“--”占位
*/
chargingMode == 0? '按需计费': resourceData.chargingMode == 1? '周期计费': '--'
3.“??”运算符
使用 “ ?? ”运算符时,只有A为 null 或者 undefined 时才会返回 B
console.log(undefined ?? 2); // 2
console.log(null ?? 2); // 2
console.log(0 ?? 2); // 0
console.log("" ?? 2); // ''
console.log(true ?? 2); // true
console.log(false ?? 2); // false