As a novice on this platform, I'm uncertain if the title may be deceiving, but I have a question regarding the following scenario:
var someObject ={}
someObject.info= {
name: "value"
};
How can I access the value of 'name'? I attempted using
someObject.info.name
However, it does not seem to make sense.