ARTS打卡計劃第一週

yi個程式猿發表於2020-03-16

Algorithm

none

Review

Tip

使用 @babel/plugin-proposal-optional-chaining 提升開發效率

const obj = {
  foo: {
    bar: {
      baz: 42
    }
  }
};

const baz = obj?.foo?.bar?.baz; // 42

const safe = obj?.qux?.baz; // undefined
複製程式碼
yarn add @babel/plugin-proposal-optional-chaining -D
複製程式碼

Share

在 React 專案中全量使用 Hooks