iT邦幫忙

2023 iThome 鐵人賽

0
Modern Web

前端知識系列 第 30

ts-reset

  • 分享至 

  • xImage
  •  

Yes


// .filter just got smarter!
const filteredArray = [1, 2, undefined].filter(Boolean) // number[] not ( number | null )[]


// Get rid of the any's in JSON.parse and fetch
const result = JSON.parse('{}') // unknown instead of any

fetch('/')
  .then((res) => res.json())
  .then((json) => {
    console.log(json) // unknown instead of any
  })
  
  
// localStorage just got safer!
localStorage.abc // unknown instead of any

// sessionStorage just got safer!
sessionStorage.abc // unknown instead of any

上一篇
10 React Antipatterns to Avoid - Code This, Not That!
系列文
前端知識30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言