我正在浏览ES2020中提出的新功能,我偶然发现了??运算符,也称为"无效合并运算符"。
解释很模糊,我仍然不明白它与逻辑 OR 运算符有何不同(||
(
解释非常简单,假设我们有下一个情况,如果它存在于对象中,我们希望获取一个值,或者如果它未定义或 null 则使用其他值
const obj = { a: 0 };
const a = obj.a || 10; // gives us 10
// if we will use ?? operator situation will be different
const obj = { a: 0 };
const a = obj.a ?? 10; // gives us 0
// you can achieve this using this way
const obj = { a: 0 };
const a = obj.a === undefined ? 10 : obj.a; // gives us 0
// it also work in case of null
const obj = { a: 0, b: null };
const b = obj.b ?? 10; // gives us 10
基本上这个运算符接下来会做:
// I assume that we have value and different_value variables
const a = (value === null || value === undefined) ? different_value : value;
有关此内容的更多信息,您可以在 MDN Web 文档中找到