vote up 1 vote down star

The output of my JSON call can either be an Array or a Hash. How do I distinguish between these two?

flag

79% accept rate

4 Answers

vote up 6 vote down check

you can use the constuctor property of your output:

if(output.constructor == Array){
}
else if(output.constructor == Object){
}
link|flag
vote up 4 vote down

Is object:

function isObject ( obj ) {
   return obj && (typeof obj  === "object");
}

Is array:

function isArray ( obj ) { 
  return isObject(obj) && (obj instanceof Array);
}

Because arrays are objects you'll want to test if a variable is an array first, and then if it is an object:

if (isArray(myObject)) {
   // do stuff for arrays
}
else if (isObject(myObject)) {
   // do stuff for objects
}
link|flag
Good answer. You may want to add the every js object can be treated as a hash. – Rontologist Oct 20 '08 at 15:34
vote up 1 vote down

Did you mean "Object" instead of "Hash"?

>>> var a = [];
>>> var o = {};
>>> a instanceof Array
true
>>> o instanceof Array
false
link|flag
vote up 0 vote down

Check for "constructor" property on the object. It is Array - it is an array object.


var a = {
 'b':{length:0},
 'c':[1,2]
}

if (a.c.constructor == Array)
   for (var i = 0; i < a.c.length; i++)
      alert(a.c[i]);
else
   for (var s in a.b);
      alert(a.b[s]);

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.