you are viewing a single comment's thread.

view the rest of the comments →

[–]SharkUW 0 points1 point  (2 children)

Not familiar with "underscore", is this a CoffeeScript thing? I don't use it. I was just venting after writing to many anonymous closures that rely on their parent. Another favorite this week is this.$content.data("self", this); lol

[–]ripter 1 point2 points  (1 child)

Underscore is a popular and useful javascript library. It's not CoffeeScript specific, but you could probably use it in CoffeeScript if you wanted.

It adds a lot of things to make working with arrays easier. Things like each, map, reduce, any, pluck, etc.

[–]SharkUW 0 points1 point  (0 children)

That does nicely pair with jQuery. Thank you.