Lime
Lime

Reputation: 13532

JavaScript alternatives underscore.js

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).

Upvotes: 2

Views: 1741

Answers (4)

Ajay Patel
Ajay Patel

Reputation: 791

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

Upvotes: 2

Morgan Bruce
Morgan Bruce

Reputation: 264

As an alternative to underscore.js, Valentine might be worth looking at.

Upvotes: 0

Benjamin Atkin
Benjamin Atkin

Reputation: 14725

Here are a few:

Upvotes: 1

Jacob Oscarson
Jacob Oscarson

Reputation: 6393

Oliver Steele's Functional (see here or here) covers a lot of the same problem space as Underscore.

Upvotes: 1

Related Questions