摘要:
Curry概念 The concept is simple: You can call a function with fewer arguments than it expects. It returns a function that takes the remaining arguments. 阅读全文
摘要:
什么是throttle(节流) Throttling enforces a maximum number of times a function can be called over time. 简单来说就是你假设给定一个wait表示这在个时间内该函数最多可以被执行一次。我们知道知道浏览器scrol 阅读全文
摘要:
先奉上源码 取自Underscore.js 1.9.1的debounce 其中比较陌生的是 和`_.delay`,那么我们首先来逐个分析它们 restArguments js // Some functions take a variable number of arguments, or a fe 阅读全文