Hello I need to check 3 - dimensional json array, now I check it like this
if(events[dd][mm][rr] !== undefined){}
but if keys doesn't exists it throw's me an error. TypeError: events[dd] is undefined
I need some JS function to check if this condition is exists and throught error of TypeError. Thank you.