常用的数组API
程序员文章站
2022-07-12 23:50:45
...
1.concat
concat()
方法用于合并两个或多个数组。此方法不会更改现有数组,而是返回一个新数组。
例:
var color = ['red','green','blue'];
var color2 = color.concat('yellow',['black','white']);
console.log(color2)
控制台输出为:
["red", "green", "blue", "yellow", "black", "white"]
2.slice
slice()
方法返回一个从开始到结束(不包括结束)选择的数组的一部分浅拷贝到一个新数组对象,原始数组不会被修改。
例:
var colors = ['red','green','blue','black','white'];
var colors2 = colors.slice(1) //green,blue,black,white
var colors3 = colors.slice(1,4) //green,blue,black
3.splice
splice()
方法始终会返回一个数组,该数组包含从原始数组中删除的项(如果没有删除任何项,则返回一个空数组),用途最广,有如下3种:
. 删除:需指定2个参数,要删除的第一项位置和要删除的项数
. 插入:需提供3个参数,起始位置、0(要删除的项数)和要插入的项,如要插入多个项 ,再传入第四,五...
. 替换:需指定3个参数,起始位置、要删除的项数和要插入的任意数量的项
例:
var colors = ['red','green','blue'];
var removed = colors.splice(0,1);
console.log(colors); //green,blue
console.log(removed); //red
var removed = colors.splice(1,0,'black');
console.log(colors); //green,black,blue
console.log(removed); // 返回空数组
var removed = colors.splice(0,2,'yellow','white');
console.log(colors); //yellow,white,blue
console.log(removed); //red,green
4.join
join()
使用指定的字符串用来分隔数组字符串
例:
var arr = new Array(3)
arr[0] = "George"
arr[1] = "John"
arr[2] = "Thomas"
document.write(arr.join("."))
输出结果为:
George.John.Thomas
5.push
push()
可接受任意类型的参数,将它们逐个添加到数组的末尾,并返回数组的长度
例:
var arr = new Array(3)
arr[0] = "George"
arr[1] = "John"
arr[2] = "Thomas"
document.write(arr + "<br />")
document.write(arr.push("James") + "<br />")
document.write(arr)
输出结果为:
George,John,Thomas
4
George,John,Thomas,James
6.pop
pop()
从数组的末尾移除最后一项,减少数组的length值,返回移除的项
例:
var arr = new Array(3)
arr[0] = "George"
arr[1] = "John"
arr[2] = "Thomas"
document.write(arr)
document.write("<br />")
document.write(arr.pop())
document.write("<br />")
document.write(arr)
输出结果为:
George,John,Thomas
Thomas
George,John
7.shift
shift()
移除数组中的第一个项并且返回该项,同时将数组的长度减一。
例:
var arr = new Array(3)
arr[0] = "George"
arr[1] = "John"
arr[2] = "Thomas"
document.write(arr + "<br />")
document.write(arr.shift() + "<br />")
document.write(arr)
输出结果为:
George,John,Thomas
George
John,Thomas
8.unshift
unshift()
在数组的前端添加任意个项,并返回新数组的长度。
例:
var arr = new Array()
arr[0] = "George"
arr[1] = "John"
arr[2] = "Thomas"
document.write(arr + "<br />")
document.write(arr.unshift("William") + "<br />")
document.write(arr)
输出结果为:
George,John,Thomas
4
William,George,John,Thomas
9. reverse
reverse()
方法用于颠倒数组中元素的顺序
例:
var arr = new Array(3)
arr[0] = "George"
arr[1] = "John"
arr[2] = "Thomas"
document.write(arr + "<br />")
document.write(arr.reverse())
输出结果为:
George,John,Thomas
Thomas,John,George
10.string
String()
函数把对象的值转换为字符串。
例:
var test1 = new Boolean(1);
var test2 = new Boolean(0);
var test3 = new Boolean(true);
var test4 = new Boolean(false);
var test5 = new Date();
var test6 = new String("999 888");
var test7 = 12345;
document.write(String(test1) + "<br />");
document.write(String(test2) + "<br />");
document.write(String(test3) + "<br />");
document.write(String(test4) + "<br />");
document.write(String(test5) + "<br />");
document.write(String(test6) + "<br />");
document.write(String(test7) + "<br />");
输出结果为:
true
false
true
false
Mon Sep 17 2018 15:35:58 GMT+0800 (中国标准时间)
999 888
12345