gpt4 book ai didi

typescript - TypeScript 中的双双问号

转载 作者:行者123 更新时间:2023-12-03 21:13:13 25 4
gpt4 key购买 nike

我找到了这样的代码:

const dealType = currentDealType ?? originalDealType ?? '';
?? ?? 的语法是什么意思?

最佳答案

它是为 ecmascript 提出并已在 Typescript 中实现的无效合并运算符。您可以阅读更多 herehere

它的要点是

const dealType = currentDealType ?? originalDealType;

相当于:
const dealType = currentDealType !== null && currentDealType !== void 0 ? currentDealType : originalDealType;

或者说:如果 currentDealTypenullundefined 使用 originalDealType otehrwise 使用 currentDealType

关于typescript - TypeScript 中的双双问号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62426269/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com