js 数组的常用操作函数

1
2
var array = ["jeiw","sfwe","fasfwe","ftqq","hjweq","jfoiwe"];
var newArrray = ["qqq","www","eee","rrr","ttt","yyy"];

1. concat()

  • 连接一个或多个数组

  • 返回连接后的新数组

    1
    console.log(    array.concat(newArrray)    );

js 数组的常用操作函数


2. push()

  • 从数组的后面添加数组

  • 返回新数组的长度

    1
    console.log(    array.push(newArrray)    );

js 数组的常用操作函数

1
2
array.push(newArrray)
console.log(array);

js 数组的常用操作函数


3. unshift()

  • 从数组的前面添加数组

  • 返回新数组的长度

    1
    console.log(array.unshift(newArrray));

js 数组的常用操作函数

1
2
array.unshift(newArrray)
console.log(array);

js 数组的常用操作函数


4. join()

  • 将数组变成字符串(默认是逗号分隔,可指定符号)

  • 返回分割后的字符串

    1
    console.log(    array.join(newArrray)    );

js 数组的常用操作函数

1
console.log(    array.join("-")    );

js 数组的常用操作函数


5. pop()

  • 删除数组的最后一个元素

  • 返回被删除的元素

    1
    2
    console.log(array.pop());  
    console.log(array);

js 数组的常用操作函数


6. shift()

  • 删除数组的第一个元素

  • 返回被删除的元素

    1
    2
    console.log(array.shift());  
    console.log(array);

js 数组的常用操作函数


7. revarse()

  • 反转数组的排序

  • 返回反转后的数组

    1
    console.log(array.reverse());

js 数组的常用操作函数

8. includes()

  • 判断是否包含该参数
  • 返回true或false
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
let MSids = [
"1000010000124855",
"1000010000124856",
"1000010000124857",
"1000010000124858",
"1000010000124860",
"1000010000124861",
"1000010000124863",
"1000010000124865"
];
if (MSids.includes("1000010000124861")) {
console.log("包括")
} else {
console.log("不包括")
}

https://blog.csdn.net/qq_42618566/article/details/104664040


js 数组的常用操作函数
https://github.com/chergn/chergn.github.io/ebb3820cfc31/
作者
全易
发布于
2024年3月28日
许可协议