美文网首页
在 TypeScript 中使用 `??` 来解决默认赋值的场景

在 TypeScript 中使用 `??` 来解决默认赋值的场景

作者: Asuna_随便记录点 | 来源:发表于2020-05-04 19:35 被阅读0次
let x = foo ?? bar();

等价于下面

let x = (foo !== null && foo !== undefined) ?
    foo :
    bar();

是用来解决以前的类似问题:

function initializeAudio() {
    let volume = localStorage.volume || 0.5

    // ...
}

When localStorage.volume is set to 0, the page will set the volume to 0.5 which is unintended. ?? avoids some unintended behavior from 0, NaN and "" being treated as falsy values.

完整参考: https://www.typescriptlang.org/docs/handbook/release-notes/overview.html#nullish-coalescing

相关文章

网友评论

      本文标题:在 TypeScript 中使用 `??` 来解决默认赋值的场景

      本文链接:https://www.haomeiwen.com/subject/sagyghtx.html