我需要使用JavaScript存储一些统计数据,就像我在c#中做的那样:
Dictionary<string, int> statistics;
statistics["Foo"] = 10;
statistics["Goo"] = statistics["Goo"] + 1;
statistics.Add("Zoo", 1);
JavaScript中有Hashtable
或Dictionary<TKey, TValue>
之类的东西吗?< br >
我如何以这种方式存储值呢?< / p >