如何在 JavaScript 中执行关联数组/哈希
2022-08-29 22:42:10
我需要使用JavaScript存储一些统计信息,就像我在C#中所做的那样:
Dictionary<string, int> statistics;
statistics["Foo"] = 10;
statistics["Goo"] = statistics["Goo"] + 1;
statistics.Add("Zoo", 1);
在JavaScript中是否有类似的东西?
如何以这种方式存储值?Hashtable
Dictionary<TKey, TValue>