Javascript Linq Extensions

A colleague has put together some nice Linq type extensions for JavaScript.

Allows you to do things like:-

var peopleWhoLikeBananas = people.Where(function(p) {
  return (p.Likes == "Bananas"); });

See his blog entry here.

0 comments: