5 Must Know JavaScript Features That Almost Nobody Knows

Jason
Sep 10, 2022

--

Nullish Coalescing

因為 “” 或 0 是 falsy,

所以 taxes = 0.05 ,description = “Default item”

改使用 ??,

?? 前面是 null 或 undefined 時會回傳 ?? 後面的值

Styling Console Log

%c

Optional Chaining

使用 ? 可以避免在沒有這個屬性時報錯

使用 ?.() 可以避免在沒有這個方法時報錯

使用 ?.() 可以避免在沒有這個 array 時報錯

Object Shorthand

key 和 value 一樣可以縮寫

Defer/Async Loading

--

--

Jason
Jason

Written by Jason

Nothing is true, everything is permitted.

No responses yet