其他分享
首页 > 其他分享> > ?? 和 | | 容易被忽略的地方。

?? 和 | | 容易被忽略的地方。

作者:互联网

?? =》 空值合并运算符。 只会判断 null 和 undefined。 

 

| | =》 短路运算。 不仅会判断 null 和undefined, ‘’ 和0 也都会判断!!!

 

ex: 

const a = null(undefined) ?? 1 => a === 1 

const b = null(undefined)  || 1 => a === 1

const aa = ''(0) ?? 1  =>  a === '' or a===0

const bb ''(0)  || 1 =>  bb === 1

标签:运算符,判断,const,undefined,bb,地方,忽略,容易,null
来源: https://www.cnblogs.com/Hijacku/p/16454172.html