Modern browsers support the Array.isArray(obj)
method.
See MDN for documentation and a polyfill.
= original answer from 2008 =
you can use the constuctor property of your output:
if(output.constructor == Array){
}
else if(output.constructor == Object){
}