我正在与 Javascript 数据结构作斗争。我需要创建一个映射,其中键是字符串,值是两个长数组。
例如,类似:
var x = myMap["SomeString"];
var firstLong = x[0][0];
var secondLong = x[0][1];
// do something with first and second long
firstLong = x[1][0];
secondLong = x[1][1];
// do something with first and second long
etc..
如何在 Javascript 中正确实现这一点?