I want to pass a 2 dimensional array:
events = [
{
title: 'All Day Event',
start: '2014-09-01'
},
{
title: 'Long Event',
start: '2014-09-07',
end: '2014-09-10'
}
];
to a display function:
function display(events){
alert(display the matrix);
};
but it doesn't work, it displays just "objects" and not the value of the objects