document.write('
解析:
标准方法:
if(object.prototype.toString.call(a) == \'[object Array]\'){
 // 是数组对象
}
常用方法:
if(a.constructor == Array){
 // 是数组对象;

');