Find if a Javascript Object that contains a property with array is defined?
How can I find out if a Javascript Object that has a property with an array has been defined? x = {}; x.gp = []; x.gp[0] = {}; x.gp[0].jockey = 14; // Find if the first array within the Object…