似乎不可能声明这样的地图,有什么办法吗?
我想要这种功能:
var map = {[]}; // doesn't compile
map["first"] = [1,2,3];
map["second"][0] = 4;
map["second"][1] = 5;
console.log(map["first"][1]); // I want it to print 2 here
console.log(map["second"][1]); // should print 5
有没有办法获得类似这样的地图?