Lo-Dash和Underscore.js

1、Underscore http://underscorejs.org/

Underscore 是一个JavaScript实用库,提供了类似 Prototype.js (或 Ruby 的一些功能,但是没有扩展任何JavaScript内置对象。它弥补了部分 jQuery 没有实现的功能,同时又是 Backbone.js 必不可少的部分。Underscore提供了80多个函数,包括常用的: map, select, invoke — 当然还有更多专业的辅助函数,如:函数绑定, JavaScript模板功能, 强类型相等测试, 等等. 在新的浏览器中, 有许多函数如果浏览器本身直接支持,将会采用原生的,如 forEach, map, reduce, filter, every, some 和 indexOf。

2、lodash

lodash包括了所有underscore的函数,还扩展一些其他的东西
https://lodash.com/
lodash官网,对lodash与underscore不同的地方进行了说明
https://lodash.com/docs
API Documentation
http://devdocs.io/lodash/
DevDocs – a searchable interface for our documentation

3、相关资料