在JavaScript中,??
和 ?
是两个不同的操作符,具有不同的用途和行为。
??
操作符(Nullish Coalescing Operator)
??
操作符用于判断一个表达式是否为 null
或 undefined
,如果是,则返回一个默认值。它的语法如下:
const result = expression1 ?? expression2;
如果 expression1
的值为 null
或 undefined
,则 result
的值为 expression2
;否则,result
的值为 expression1
。 例如:
const name = null;
const defaultName = "John";
const result = name ?? defaultName;
console.log(result); // 输出 "John"
在这个例子中,name
的值为 null
,所以 result
的值为 defaultName
,即 “John”。
?
操作符(Optional Chaining Operator)
?
操作符用于访问一个可能为 null
或 undefined
的对象的属性或方法,以避免出现错误。
它的语法如下:
const result = object?.property;
如果 object
不为 null
或 undefined
,则返回 property
的值;否则,返回 undefined
。 例如:
const person = { name: "John", age: 30 };
const result = person?.name;
console.log(result); // 输出 "John
在这个例子中,person
对象存在,并且有一个 name
属性,所以 result
的值为 “John”。
- 总结
??
操作符用于提供默认值,当左侧表达式为null
或undefined
时使用右侧表达式作为结果;?
操作符用于安全地访问可能为null
或undefined
的对象的属性或方法,避免出现错误。
延展阅读:
谷歌的TimesFM时序预测模型能否革新电商行业的库存管理和销量预测?
为什么PHP在近年来逐渐失去了领先地位,而GoLang却迅速崛起?
中小团队怎么基于PG快速迭代创新?PostgreSQL is all you need!
咨询方案 获取更多方案详情