Test if array exists

wxdqz

New Member
I thought this was simple. I must be missing something. Here's what I want to do, but it doesn't work.

if (someAry == undefined) {
alert("There's no array");
} else {
alert("There is an array");
}
 
Back
Top