I need help with a JSON structure I am working with:
data:
{
First Name: "Robert",
Last Name: "Smith"
}
I'm trying to access the data using javascript like this: "data.First Name" I know this is incorrect syntax. How can I extract the information from the current structure?
Thanks!