数组|数组及其方法

数组的常用方法:

**增**:1:push()--向尾部添加元素,返回新数组。 2:unshift()--向头部添加元素,返回新数组。**删**:1:shift()--从头部删除一个元素。 2:pop()--从尾部删除一个元素。 3:splice()--删除任意一个位置的元素(起始,删除个数)。**改**:1:join()--将数组分割成字符串。括号内容是用什么分割。**查**:1:indexof()--返回要查找的元素的位置。 2:lastIndexof()--返回要查找的元素的位置。

数组的遍历方法:
①:forin(对象的遍历); ②:for Each; ③:some; ④:map; ⑤:every; ~~~~⑥:for of;

** 数组去重:
Set方法: varaa = [1,1,2,3,3,4,5,5,6]; vaar a = new Set(aa) console.log(...a)数组的合并: ①:concat; ②:...(扩展运算符);~~~~

    推荐阅读