Underscore.js max min sortBy groupBy indexBy

_.max() 返回list中最大值,作为iterator排序的依据

_.max(list, [iterator], [context]);

Underscore.js max min sortBy groupBy indexBy_第1张图片

_.min()返回list中最小值

与_.max()相反


_sortBy()  返回排序后的list拷贝副本

如果有iterator参数,iterator将作为list排序的依据

_sortBy(list, iterator, ,[context]);

Underscore.js max min sortBy groupBy indexBy_第2张图片

_.groupBy() 通过iterator分组为多个集合

_.groupBy(list, iterator, [context]);

Underscore.js max min sortBy groupBy indexBy_第3张图片


indexBy()

_.indexBy(list, iterator, [context]);

返回一个每一项索引的对象。

Underscore.js max min sortBy groupBy indexBy_第4张图片

countBy()

与groupBy类似,返回该数组中值得数目

Underscore.js max min sortBy groupBy indexBy_第5张图片

你可能感兴趣的:(Underscore.js max min sortBy groupBy indexBy)