你知道吗?
?? 和 || 有什么区别?
源自其甜美的法语名称“假人合并运算符”,a ?? b 允许您返回术语 a,如果后者既不是 null 也不是 undefined。在相反的情况下,运算符返回项 b.
这是一个允许您在 JavaScript 中重新定义此运算符的示例。
const result = a ?? b
const nullishCoalescingOperator = (a, b) => { if (a !== null && a !== undefined) { return a } return b; } const result = nullishCoalescingOperator(a,b);
逻辑 OR 运算符 与空合并运算符类似,只不过后者测试术语 a 是否为 falsy 。
提醒一下,这里是 JavaScript 中虚假值的非详尽列表:
这是一个允许您在 JavaScript 中重新定义此运算符的示例。
const result = a || b
const orOperator = (a,b) => { if (a) { return a; } return b; }
最后,这是一个表格,总结了函数 ?? 和 ||
的返回结果
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Nullish_coalescing
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Logical_OR
以上是你知道吗? - ??与||的详细内容。更多信息请关注PHP中文网其他相关文章!