如何在JavaScript中进行关联数组/散列
我需要使用JavaScript存储一些统计信息,就像我在C#中这样做:
Dictionary<string, int> statistics;statistics["Foo"] = 10;statistics["Goo"] = statistics["Goo"] + 1;statistics.Add("Zoo", 1);
JavaScript中是否有Hashtable
类似的东西Dictionary<TKey, TValue>
?
我怎么能以这种方式存储价值?
动漫人物
慕斯王
相关分类