数组大概知多少

判断一个变量是否为数组?

可靠地检测数组方法

1.利用ObjecttoString方法

1
2
var list = [1, 2, 3];
Object.prototype.toString.call(list);//[object Array]

2.利用ES5Array.isArray()方法

1
2
var list = [1, 2, 3];
Array.isArray(list);//true

数组的原生方法有哪些?

会改变自身的方法:

  • copyWithinfillpoppushreverseshiftsortspliceunshift

不会改变自身的方法:

  • concatincludesjoinslicetoSourcetoStringindexOflastIndexOf

遍历方法:

  • forEachentrieseverysomefilterfindfindIndex
  • keysmapreducereduceRightvalues

如何将类数组的变量转化为数组?

  • 如果是ES6,可以用Array.from()方法。
  • 通常用Array.prototype.slice.call()的方法,将类似数组转换为数组。