js 运算符
??
逻辑运算符,当左侧的操作数为null
和undefined
时,返回其右侧操作数,否则返回左侧操作数
const bar = null ?? 1 // 1
const bar = undefined ?? 1 // 1
const bar = 0 ?? 1 // 0
大约 7 分钟
??
逻辑运算符,当左侧的操作数为 null
和 undefined
时,返回其右侧操作数,否则返回左侧操作数const bar = null ?? 1 // 1
const bar = undefined ?? 1 // 1
const bar = 0 ?? 1 // 0