Js中如何判断一个对象为数组类型本来判断一个对象类型用typeof是最好的,不过对于Array类型是不适用的可以使用 instanceof操作符var arrayStr=new Array("1","2","3"2023-04-28JavaScript300