Underscore.JS - 函数



Underscore.JS 有许多易于使用的方法,可帮助处理函数。本章将详细介绍它们。

Underscore.JS 提供了处理函数的各种方法,如下所列,-:

序号 方法和语法
1 绑定

_.bind(function, object, *arguments)

2 部分

_.partial(function, *arguments)

3 记忆

_.memoize(function, [hashFunction])

4 延迟

_.delay(function, wait, *arguments)

5 一次

_.once(function)

6 之前

_.before(count, function)

7 包装

_.wrap(function, wrapper)

8 否定

_.negate(predicate)

9 撰写

_.compose(*functions)

广告