Bootstrap

手写节流 throttle、防抖 debounce

节流

// 节流就是「技能冷却中」 
const throttle = (fn, time) => {
   
  let cd = false
  return (...args) => {
   
    if ( cd ) return
    fn.call(undefined, ...args)
    cd = true
    
;