一、与数组的区别 1-类数组不具有数组的属性和方法(类数组拥有length属性和其他非负整数属性) 2-类数组本质是一个普通对象(Object),数组的本质是Array 二、类数组转化为数组的方法 1、Array.prototype.slice.call(arrayLike) 2、Array.prototype.splice.call(arrayLike,0) 3、Array.prototype.concat.apply([],arrayLike) 4、Array.from(arrayLike)