Today I Learnt
发表于更新于阅读时长 1 分钟还行
2021.01.05 React 中使用链表记录 hook 状态, 而 Preact 则使用数组
2021.01.16 React 旧版本对合成事件对象做了 pooling, 因此异步地消费它会出现 bug; 在 React 17 中取消了这一行为
2021.01.31 URLSearchParams 有 entries 的迭代器
2021.10.17 如果即要 forwardRef,又想在当前组件中使用该 ref,可以
const foo = forwardRef((props, ref) => {
const ref = useRef()
useImperativeHandle(ref, () => ref.current)
})
2021.10.23 在 JS 模块(module)中,顶层 this(函数之外的 this)也是 undefined
2021.10.25 JS 中不存在 arrow generator function
2021.10.26 JS 中 async generator 是随着 for await of 于 ES2018 引入的
2021.11.09 JS 的 tagged template literal 可以不是合法的 JS 字符串
2021.11.14 JS 中 eval?.() 是 indirect eval call
2021.11.17 JS 中 super 保留字可以用在 object shorthand method 中