I have an object like this:
let object = {
seniority: 'director_level',
'address.long_form': 'Phoenix, AZ, United States'
}
when I go to print address.long_form
like this I get an error.
console.log(object.address.long_form)
How do get the value for 'address.long_form'?