JavaScript 替代品 underscore.js
有哪些非原型修改库为 JavaScript 提供核心功能(不是 DOM,而是数组、字符串、数字、RegExp 等操作)?
我正在寻找 underscore.js 的替代品(jQuery 不算)。
What are some non prototype
modifying libraries that provide core functionality to JavaScript (not DOM, but Array,String,Number,RegExp,etc... manipulations)?
I'm looking for alternatives to underscore.js (jQuery doesn't count).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
lodash 具有非常好的功能,如 underscore js,并且与 underscore js 相比,速度也更快。
虽然 lodash 很好,但我发现了另一个不错的图书馆
SugarJS
lodash have very good functionaliy like underscore js and it is fast also compare to underscore js.
though lodash is good but i found another good library
SugarJS
以下是一些:
map
和排序依据
。Here are a few:
map
andsortBy
.Oliver Steele 的
Functional
(请参阅此处 或 此处)涵盖了许多与 Underscore 相同的问题空间。Oliver Steele's
Functional
(see here or here) covers a lot of the same problem space as Underscore.作为 underscore.js 的替代方案,Valentine 可能值得一看。
As an alternative to underscore.js, Valentine might be worth looking at.