Is it possible to define a 2 dimensional set in Javascript, which could look as follows:
let set = {}{};
and then to access this like a 2 dimensional array as set[][];
?
By the way, an Array is not suitable for my purpose, because I need to index with strings instead of numbers.