I've got in my variable (events) two objects:

I'm trying to get "title" from each object and then send them with ajax two my php file where I will have to separate arrays:
array(
title = "All Day Event";
},
array(
title = "sdfsdf";
}
I've no idea how to do this. I've tried to acces "title" with:
events['title]
and
events.title
But it doesn't work.