I'm new to JS and I don't know how to access properties of an object, which are objects themselves. I have the following object(let´s call it 'a'), where I want to access -kk7b9q6FWN1VkCCflEX.name for example.
I tried
console.log(a.-kk7b9q6FWN1VkCCflEX.name)
but it gave me an error, due to '-' being an exception. I know how to get the key names:
Object.keys(a)
but I cant figure out how to access their properties.
Could someone help me out? Actually, I would be fine if someone could give me a "keyword" I can google on for this topic(because I don't even know what to google). Googling 'Accessing objects inside objects' didn´t help me :(