5

I've been using the dojo array utilties, but I'm not entirely happy with the limited number of features. Is there any really extensive well-written javascript array utility library or extension?

I'd be hoping for something similar in scope to the collections extension in the C# API.

Greg
  • 1,549
  • 1
  • 20
  • 34

2 Answers2

11

Check out underscore.js

kendaleiv
  • 5,793
  • 3
  • 28
  • 38
1

I'd be hoping for something similar to the collection extension in the C# API.

Not sure exactly what you mean by "array utility/extension", but LINQ for JavaScript looks pretty cool. It implements many of the collection-related extension methods found in .NET.

Tim M.
  • 53,671
  • 14
  • 120
  • 163
  • Ah this looks like pretty great. I will have to give it a try. – Greg Mar 22 '12 at 22:56
  • I meant something similar to the methods and extension methods shown on here: http://msdn.microsoft.com/en-us/library/he2s3bh7.aspx , this is just to give you an idea. – Greg Mar 22 '12 at 23:20