3

I'm writing a client program for a game in Javascript but I'm new in Javascript world. Core Javascript lack of high level data structures.

I've found code snippets on internet but I'm looking for a reference library (like commons-collection or google-collection in java world).

I found this post: JavaScript implementation of a set data structure which refers to jshashtable and closure.

Are they reference implementations? Do you know something else?

Thanks

Community
  • 1
  • 1
user355056
  • 31
  • 1
  • Google closure library has `goog.structs.*` - http://code.google.com/p/closure-library/source/browse/#svn/trunk/closure/goog/structs – Chetan S Jun 01 '10 at 04:54

2 Answers2

0

http://jsclass.jcoglan.com/ gives you everything Ruby has, which is a lot.

quikchange
  • 565
  • 2
  • 6
  • 13