空值合并运算符(??)

6,608 阅读3分钟

空值合并运算符

空值合并操作符(??) 是一个逻辑操作符,当左侧的操作数为 null 或者 undefined 时,返回其右侧操作数,否则返回左侧操作数。

与逻辑或操作符(||)不同,逻辑或操作符会在左侧操作数为假值时返回右侧操作数。也就是说,如果使用 || 来为某些变量设置默认值,可能会遇到意料之外的行为。比如为假值(例如,''0)时。

const x = null ?? 'default string';
console.log(x);
// expected output: "default string"

const y = 0 ?? 15;
console.log(y);
// expected output: 0

使用空值合并操作符

在这个例子中,我们使用空值合并操作符为常量提供默认值,保证常量不为 null 或者 undefined。

const nullValue = null;
const emptyText = ""; // 空字符串,是一个假值,Boolean("") === false
const someNumber = 15;

const x = nullValue ?? "x 的默认值";
const y = emptyText ?? "y 的默认值";
const z = someNumber ?? 0;

console.log(x); // "x 的默认值"
console.log(y); // ""(空字符串虽然是假值,但不是 null 或者 undefined)
console.log(z); // 42

为变量赋默认值

以前,如果想为一个变量赋默认值,通常的做法是使用逻辑或操作符(||):

let x;

//  foo is never assigned any value so it is still undefined
let someDummyText = x || 'Hi!';

然而,由于 || 是一个布尔逻辑运算符,左侧的操作数会被强制转换成布尔值用于求值。任何假值(0''NaNnullundefined)都不会被返回。这导致如果你使用0''NaN作为有效值,就会出现不可预料的后果。

let count = 0;
let a = "";

let x = count || 15;
let y = a || "Hello!";
console.log(x);     // 15,而不是 0
console.log(y); // "Hello!",而不是 ""

空值合并操作符可以避免这种陷阱,其只在第一个操作数为 nullundefined 时(而不是其它假值)返回第二个操作数:

let a = ''; // An empty string (which is also a falsy value)

let x = a || 'Hello world';
console.log(x); // Hello world

let y = a ?? 'Hi!';
console.log(y); // '' (as myText is neither undefined nor null)

短路

ORAND 逻辑操作符相似,当左表达式不为 nullundefined 时,不会对右表达式进行求值。

function A() { console.log('函数 A 被调用了'); return undefined; }
function B() { console.log('函数 B 被调用了'); return false; }
function C() { console.log('函数 C 被调用了'); return "foo"; }

console.log( A() ?? C() );
// 依次打印 "函数 A 被调用了"、"函数 C 被调用了"、"foo"
// A() 返回了 undefined,所以操作符两边的表达式都被执行了

console.log( B() ?? C() );
// 依次打印 "函数 B 被调用了"、"false"
// B() 返回了 false(既不是 null 也不是 undefined)
// 所以右侧表达式没有被执行

不能与 AND 或 OR 操作符共用

?? 直接与 AND(&&)OR(||)操作符组合使用是不可取的。应当是因为空值合并操作符和其他逻辑操作符之间的运算优先级/运算顺序是未定义的,这种情况下会抛出 SyntaxError

null || undefined ?? "foo"; // 抛出 SyntaxError
true || undefined ?? "foo"; // 抛出 SyntaxError

但是,如果使用括号来显式表明运算优先级,是没有问题的:

(null || undefined ) ?? "foo"; // 返回 "foo"

与可选链式操作符(?.)的关系

空值合并操作符针对 undefinednull 这两个值,可选链式操作符(?.) 也是如此。在这访问属性可能为 undefinednull 的对象时,可选链式操作符非常有用。

let foo = { someFooProp: "hi" };

console.log(foo.someFooProp?.toUpperCase()); // "HI"
console.log(foo.someBarProp?.toUpperCase()); // undefined

判断为' '/null/undefined的用法


if((value??'')!==''){

}

// 取代
if(value !== null && value !== undefined && value !== ''){

}