Skip to content

Latest commit

 

History

History
17 lines (16 loc) · 442 Bytes

README.md

File metadata and controls

17 lines (16 loc) · 442 Bytes

Javascript面试源码实现

  • call,apply,bind的实现
  • _new 的实现
  • __proto__的实现
  • _extends的实现
  • _filter的实现(Array.prototype.filter)
  • _instanceof的实现
  • _map的实现(Array.proptotype.map)
  • Promise的实现
  • _reduce的实现(Array.prototype.reduce)
  • 继承的几种方式,及各自缺点
  • Object.create的实现
  • Object.assign的实现
  • Vue的响应式原理
  • 函数防抖debounce
  • 函数节流throttle