JavaScriptで無限次元配列を作成(またはシミュレート)しようとしています。基本的に、これはオブジェクトを整数のリスト(任意の長さである可能性があります)に関連付けるデータ構造になります。このデータ構造に各要素を格納する効率的な方法はありますか?
function addElement(theObject, coordinates){
//object is the object, and coordinates is the list of coordinates (any number of coordinates will be accepted, since it's infinite-dimensional)
}
function getObject(coordinates){
//get the object that was previously assigned to this list of coordinates
}
addElement("Hello World", [0, 0, 3, 5]);
console.log(getObject([0, 0, 3, 5])); //this would print "Hello World".