I'm trying to access the value of a key inside a Javascript object. My object currently looks like:
const options = {
  "account.country": getCountry,
  "account.phone": getPhone,
}
When I console.log(options), it shows the whole object. But, when I try
console.log(options.account) // undefined, 
console.log(options.account.country) // error. 
I don't understand why. I also tried:
 const parsedObj = JSON.parse(options);
 console.log(parsedObj);
But it just returns
'Unexpected token o in JSON at position 1'
 
     
     
     
     
     
    