如何使用underscore.js的reduce方法?
任何人都有关于如何在下划线中使用reduce方法的示例。
anyone got any examples on how to use the reduce method in underscore.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
任何人都有关于如何在下划线中使用reduce方法的示例。
anyone got any examples on how to use the reduce method in underscore.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
下面是两个 javascript 示例,与下划线非常相似。
它们求出一组数字中的数学平均值和标准差。
您经常会看到reduce 处理与人口或统计数据相关的数组中的数千或数百万个项目。
Here are two javascript examples, quite similar to underscore.
These find the mathematical mean and the standard deviation in an array of numbers.
You often see reduce working with thousands or millions of items in arrays related to populatons or statistics.
他们有它...... http://underscorejs.org/#reduce
就在那里 - Underscore.js 官方网站。
They have it... http://underscorejs.org/#reduce
Right there - at the official Underscore.js site.