Ich muss einige Statistiken mit JavaScript in einer Weise speichern, wie ich es in C# tun würde:
Dictionary<string, int> statistics;
statistics["Foo"] = 10;
statistics["Goo"] = statistics["Goo"] + 1;
statistics.Add("Zoo", 1);
Gibt es eine Hashtable
oder etwas wie Dictionary<TKey, TValue>
in JavaScript?
Wie könnte ich Werte auf diese Weise speichern?