一、concat()
concat() 方法用于連接兩個或多個數(shù)組哑梳。該方法不會改變現(xiàn)有的數(shù)組劲阎,僅會返回被連接數(shù)組的一個副本餐胀。
var arr1 = [1,2,3];
var arr2 = [4,5];
var arr3 = arr1.concat(arr2);
console.log(arr1); //[1, 2, 3]
console.log(arr3); //[1, 2, 3, 4, 5]
</pre>
二仿便、join()
join() 方法用于把數(shù)組中的所有元素放入一個字符串。元素是通過指定的分隔符進行分隔的想诅,默認使用','號分割吠卷,不改變原數(shù)組锡垄。
var arr = [2,3,4];
console.log(arr.join()); //2,3,4
console.log(arr); //[2, 3, 4]
</pre>
三、push()
push() 方法可向數(shù)組的末尾添加一個或多個元素祭隔,并返回新的長度货岭。末尾添加,返回的是長度,會改變原數(shù)組千贯。
var a = [2,3,4];
var b = a.push(5);
console.log(a); //[2,3,4,5]
console.log(b); //4
push方法可以一次添加多個元素push(data1,data2....)
</pre>
四屯仗、pop()
pop() 方法用于刪除并返回數(shù)組的最后一個元素。返回最后一個元素搔谴,會改變原數(shù)組魁袜。
var arr = [2,3,4];
console.log(arr.pop()); //4
console.log(arr); //[2,3]
</pre>
五、shift()
shift() 方法用于把數(shù)組的第一個元素從其中刪除敦第,并返回第一個元素的值峰弹。返回第一個元素,改變原數(shù)組申尼。
var arr = [2,3,4];
console.log(arr.shift()); //2
console.log(arr); //[3,4]
</pre>
六垮卓、unshift()
unshift() 方法可向數(shù)組的開頭添加一個或更多元素,并返回新的長度师幕。返回新長度粟按,改變原數(shù)組。
var arr = [2,3,4,5];
console.log(arr.unshift(3,6)); //6
console.log(arr); //[3, 6, 2, 3, 4, 5]
tip:該方法可以不傳參數(shù),不傳參數(shù)就是不增加元素霹粥。
</pre>
七灭将、slice()
返回一個新的數(shù)組,包含從 start 到 end (不包括該元素)的 arrayObject 中的元素后控。返回選定的元素庙曙,該方法不會修改原數(shù)組。
var arr = [2,3,4,5];
console.log(arr.slice(1,3)); //[3,4]
console.log(arr); //[2,3,4,5]
</pre>
八浩淘、splice()
splice() 方法可刪除從 index 處開始的零個或多個元素捌朴,并且用參數(shù)列表中聲明的一個或多個值來替換那些被刪除的元素。如果從 arrayObject 中刪除了元素张抄,則返回的是含有被刪除的元素的數(shù)組砂蔽。splice() 方法會直接對數(shù)組進行修改。
var a = [5,6,7,8];
console.log(a.splice(1,0,9)); //[]
console.log(a); // [5, 9, 6, 7, 8]
var b = [5,6,7,8];
console.log(b.splice(1,2,3)); //[6, 7]
console.log(b); //[5, 3, 8]
</pre>
九署惯、substring() 和 substr()
相同點:如果只是寫一個參數(shù)左驾,兩者的作用都一樣:都是是截取字符串從當前下標以后直到字符串最后的字符串片段。
substr(startIndex);
substring(startIndex);
var str = '123456789';
console.log(str.substr(2)); // "3456789"
console.log(str.substring(2)) ;// "3456789"
</pre>
不同點:第二個參數(shù)
substr(startIndex,lenth): 第二個參數(shù)是截取字符串的長度(從起始點截取某個長度的字符串)极谊;
substring(startIndex, endIndex): 第二個參數(shù)是截取字符串最終的下標 (截取2個位置之間的字符串,‘含頭不含尾’)诡右。
console.log("123456789".substr(2,5)); // "34567"
console.log("123456789".substring(2,5)) ;// "345"
</pre>
十、sort 排序
按照 Unicode code 位置排序轻猖,默認升序
var fruit = ['cherries', 'apples', 'bananas'];
fruit.sort(); // ['apples', 'bananas', 'cherries']
var scores = [1, 10, 21, 2];
scores.sort(); // [1, 10, 2, 21]
</pre>
十一帆吻、reverse()
reverse() 方法用于顛倒數(shù)組中元素的順序。返回的是顛倒后的數(shù)組咙边,會改變原數(shù)組桅锄。
var arr = [2,3,4];
console.log(arr.reverse()); //[4, 3, 2]
console.log(arr); //[4, 3, 2]
</pre>
十二琉雳、indexOf 和 lastIndexOf
都接受兩個參數(shù):查找的值、查找起始位置
不存在友瘤,返回 -1 翠肘;存在,返回位置辫秧。indexOf 是從前往后查找束倍, lastIndexOf 是從后往前查找。
indexOf
var a = [2, 9, 9];
a.indexOf(2); // 0
a.indexOf(7); // -1
if (a.indexOf(7) === -1) {
// element doesn't exist in array
}
</pre>
lastIndexOf
var numbers = [2, 5, 9, 2];
numbers.lastIndexOf(2); // 3
numbers.lastIndexOf(7); // -1
numbers.lastIndexOf(2, 3); // 3
numbers.lastIndexOf(2, 2); // 0
numbers.lastIndexOf(2, -2); // 0
numbers.lastIndexOf(2, -1); // 3
</pre>
十三盟戏、every
對數(shù)組的每一項都運行給定的函數(shù)绪妹,每一項都返回 ture,則返回 true
function isBigEnough(element, index, array) {
return element < 10;
}
[2, 5, 8, 3, 4].every(isBigEnough); // true
</pre>
十四、some
對數(shù)組的每一項都運行給定的函數(shù)柿究,任意一項都返回 ture,則返回 true
function compare(element, index, array) {
return element > 10;
}
[2, 5, 8, 1, 4].some(compare); // false
[12, 5, 8, 1, 4].some(compare); // true
</pre>
十五邮旷、filter
對數(shù)組的每一項都運行給定的函數(shù),返回 結(jié)果為 ture 的項組成的數(shù)組
var words = ["spray", "limit", "elite", "exuberant", "destruction", "present", "happy"];
var longWords = words.filter(function(word){
return word.length > 6;
});
// Filtered array longWords is ["exuberant", "destruction", "present"]
</pre>
十六蝇摸、map
對數(shù)組的每一項都運行給定的函數(shù)婶肩,返回每次函數(shù)調(diào)用的結(jié)果組成一個新數(shù)組
var numbers = [1, 5, 10, 15];
var doubles = numbers.map(function(x) {
return x * 2;
});
// doubles is now [2, 10, 20, 30]
// numbers is still [1, 5, 10, 15]
</pre>
十七、forEach 數(shù)組遍歷
const items = ['item1', 'item2', 'item3'];
const copy = [];
items.forEach(function(item){
copy.push(item)
});
</pre>
ES6新增新操作數(shù)組的方法
1貌夕、find():
傳入一個回調(diào)函數(shù)律歼,找到數(shù)組中符合當前搜索規(guī)則的第一個元素,返回它啡专,并且終止搜索险毁。
const arr = [1, "2", 3, 3, "2"]
console.log(arr.find(n => typeof n === "number")) // 1
</pre>
2、findIndex():
傳入一個回調(diào)函數(shù)们童,找到數(shù)組中符合當前搜索規(guī)則的第一個元素畔况,返回它的下標,終止搜索慧库。
const arr = [1, "2", 3, 3, "2"]
console.log(arr.findIndex(n => typeof n === "number")) // 0
</pre>
3问窃、fill():
用新元素替換掉數(shù)組內(nèi)的元素,可以指定替換下標范圍完沪。
arr.fill(value, start, end)
</pre>
4、copyWithin():
選擇數(shù)組的某個下標嵌戈,從該位置開始復制數(shù)組元素覆积,默認從0開始復制。也可以指定要復制的元素范圍熟呛。
arr.copyWithin(target, start, end)
const arr = [1, 2, 3, 4, 5]
console.log(arr.copyWithin(3))
// [1,2,3,1,2] 從下標為3的元素開始宽档,復制數(shù)組,所以4, 5被替換成1, 2
const arr1 = [1, 2, 3, 4, 5]
console.log(arr1.copyWithin(3, 1))
// [1,2,3,2,3] 從下標為3的元素開始庵朝,復制數(shù)組吗冤,指定復制的第一個元素下標為1又厉,所以4, 5被替換成2, 3
const arr2 = [1, 2, 3, 4, 5]
console.log(arr2.copyWithin(3, 1, 2))
// [1,2,3,2,5] 從下標為3的元素開始,復制數(shù)組椎瘟,指定復制的第一個元素下標為1覆致,結(jié)束位置為2,所以4被替換成2
</pre>
5肺蔚、from
將類似數(shù)組的對象(array-like object)和可遍歷(iterable)的對象轉(zhuǎn)為真正的數(shù)組
const bar = ["a", "b", "c"];
Array.from(bar);
// ["a", "b", "c"]
Array.from('foo');
// ["f", "o", "o"]
</pre>
6煌妈、of
用于將一組值,轉(zhuǎn)換為數(shù)組宣羊。這個方法的主要目的璧诵,是彌補數(shù)組構造函數(shù) Array() 的不足。因為參數(shù)個數(shù)的不同仇冯,會導致 Array() 的行為有差異之宿。
Array() // []
Array(3) // [, , ,]
Array(3, 11, 8) // [3, 11, 8]
Array.of(7); // [7]
Array.of(1, 2, 3); // [1, 2, 3]
Array(7); // [ , , , , , , ]
Array(1, 2, 3); // [1, 2, 3]
</pre>
7、entries() 返回迭代器:返回鍵值對
//數(shù)組
const arr = ['a', 'b', 'c'];
for(let v of arr.entries()) {
console.log(v)
}
// [0, 'a'] [1, 'b'] [2, 'c']
//Set
const arr = new Set(['a', 'b', 'c']);
for(let v of arr.entries()) {
console.log(v)
}
// ['a', 'a'] ['b', 'b'] ['c', 'c']
//Map
const arr = new Map();
arr.set('a', 'a');
arr.set('b', 'b');
for(let v of arr.entries()) {
console.log(v)
}
// ['a', 'a'] ['b', 'b']
</pre>
8苛坚、values() 返回迭代器:返回鍵值對的value
//數(shù)組
const arr = ['a', 'b', 'c'];
for(let v of arr.values()) {
console.log(v)
}
//'a' 'b' 'c'
//Set
const arr = new Set(['a', 'b', 'c']);
for(let v of arr.values()) {
console.log(v)
}
// 'a' 'b' 'c'
//Map
const arr = new Map();
arr.set('a', 'a');
arr.set('b', 'b');
for(let v of arr.values()) {
console.log(v)
}
// 'a' 'b'
</pre>
9比被、keys() 返回迭代器:返回鍵值對的key
//數(shù)組
const arr = ['a', 'b', 'c'];
for(let v of arr.keys()) {
console.log(v)
}
// 0 1 2
//Set
const arr = new Set(['a', 'b', 'c']);
for(let v of arr.keys()) {
console.log(v)
}
// 'a' 'b' 'c'
//Map
const arr = new Map();
arr.set('a', 'a');
arr.set('b', 'b');
for(let v of arr.keys()) {
console.log(v)
}
// 'a' 'b'
</pre>
10、includes
判斷數(shù)組中是否存在該元素炕婶,參數(shù):查找的值姐赡、起始位置,可以替換 ES5 時代的 indexOf 判斷方式柠掂。indexOf 判斷元素是否為 NaN项滑,會判斷錯誤。
<pre class="" style="margin: 0px 0px 15px; padding: 15px 5px; max-width: 100%; box-sizing: border-box !important; word-wrap: break-word; font-size: 13px; line-height: 1.5; overflow: auto; border-radius: 3px; font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; background-color: rgb(246, 248, 250);">
var a = [1, 2, 3];
a.includes(2); // true
a.includes(4); // false
</pre>
END