Underscore.JS - 迭代集合


Underscore.JS 有许多易于使用的方法,有助于迭代集合。本章详细讨论它们。

Underscore.JS 提供了各种方法来迭代集合,如下所示 -

先生。 方法和语法
1 每个

_.each(列表, iteratee, [上下文])

2 地图

_.map(列表, iteratee, [上下文])

3 减少

_.reduce(列表, iteratee, [备忘录], [上下文])

4 减少右

_.reduceRight(列表, iteratee, [备忘录], [上下文])

5 寻找

_.find(列表、谓词、[上下文])

6 筛选

_.filter(列表、谓词、[上下文])

7 在哪里

_.where(列表,属性)

8 查找地点

_.findWhere(列表,属性)

9 拒绝

_.reject(列表、谓词、[上下文])

10 每一个

_.every(列表, [谓词], [上下文])

11 一些

_.some(列表, [谓词], [上下文])