The following is a two dimensional array, I just need to print it, but when I loop inside of it I get [object object]
or undefined
const myarra = function(){
return [
[
{ "dayOfMonth" : 1, "dayOfWeek" : "Fri", "event" : "" },
{ "dayOfMonth" : 2, "dayOfWeek" : "Sat", "event" : "" }
]
];
};