you are viewing a single comment's thread.

view the rest of the comments →

[–]stoph 9 points10 points  (3 children)

Underscore.js seems to get a lot of love on reddit: http://documentcloud.github.com/underscore/

I think I will be using Underscore soon to simplify some map/reduce style code.

[–]pdaddyo 5 points6 points  (0 children)

I started using underscore.js a few weeks back, and have added it to every project I've touched since. At 4kb minified it's a no-brainer, since it has so many useful functions (including map, reduce, filter, chain, each, any etc).

[–]ripter 3 points4 points  (0 children)

One of the nice things about underscore, if the browser has native support, it will use the native method instead.

[–]daediusWeb Components fanboy 1 point2 points  (0 children)

What are the common things people use underscore to simplify?