We can write an object in JavaScript as
obj1 = {1:2,2:2,3:10}
However is there a way to write an object with some sort of "MultiDimensional Key" as
obj2= {(1, 1): 1, (1, 2): 1, (1, 3): 1, (1, 4): 1, (1, 5): 1}
If not, what could be an easy way of writing such an object???