Js提供了两种原生的检验数组的方法InstanceOf() 和 isArray(),建议使用isArray() ,具体使用如下:
if(value instanceOf Array){ } if(Array.isArray(value)){ }