Is it possible to set javascript objects dynamically?
I your create objects this way:
let data = {a: {b: 'value'}};
but I need to create it this way:
let data ['a'] ['b'] = 'value';
Object creation will happen within a loop dynamically. That's why I need the second way.