Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Can anyone recommend a good Hashtable implementation in Javascript?

Hello everyone,

I want to calculate/store some statistics information using JavaScript, the equivalent code in C# is below (features I need are -- key-value pair, string/int key value pair, manipulate values by keys, etc.), any ideas how to implement the same function in JavaScript? Looks like there is no built-in Dictionary or Hashtable? Thanks!

Dictionary<string, int> statistics;

statistics["Foo"] = 10;
statistics["Goo"] = statistics["Goo"] + 1;
statistics.Add("Zoo", 1);

regards, George

share|improve this question
See: stackoverflow.com/questions/130543/… – Shog9 Jul 30 '09 at 18:03
1  
js is loosely typed, so there's no way to just declare a string or int, you can just declare a var and assign it a string or int. :D – CrazyJugglerDrummer Jul 30 '09 at 18:07
How can this be question be marked as duplicate, but the link to the duplicate is closed as not constructive? – TTT Apr 29 at 14:04

marked as duplicate by Shog9, TheTXI, Pesto, Welbog, John Saunders Jul 30 '09 at 18:52

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 52 down vote accepted

Depending on what you want to do, you may want to try using JavaScript objects as associative arrays: see JavaScript Associative Arrays Demystified.

share|improve this answer
1  
Thanks Alek, working – George2 Jul 31 '09 at 4:22
var associativeArray = {};
associativeArray["one"] = "First";
associativeArray["two"] = "Second";
associativeArray["three"] = "Third";

If you are comming from an Object Oriented language you should check this article

share|improve this answer
Very nice sample, thanks! – George2 Jul 31 '09 at 4:24
1  
As the link that @Alek shared states, using the [] is misleading, since you really are not using the Array just its underlying Object. I would suggest the first line should be the following to make it clear what is really going on: var associativeArray = {}; – studgeek Mar 16 '11 at 16:40
yes, you're right. I'm going to edit the example – Dani Cricco Mar 20 '11 at 13:54

There is nothing built in, though, both are simply wrappers for arrays which are supported by javascript and common array functions which you can write yourself. You can either search google for an implementation or make your own.

share|improve this answer
Good to know no built-in hashtable. – George2 Jul 31 '09 at 4:23

Not the answer you're looking for? Browse other questions tagged or ask your own question.