字面量語法(數組直接量)或構造函數segmentfault
須要注意的是數組直接量的語法容許有可選的結尾的逗號,因此[,,]
只有兩個元素而非三個數組
須要注意的是若是是負數或非負來索引數組,數組將轉換爲字符串,字符串做爲屬性名來用。函數
var arr = []; arr[-12] = 10; console.log(arr[-12]); //此時這是一個屬性
數組也是對象,因此也能夠定義getter和setter方法this
var arr = []; Object.defineProperties(arr, { name: { value: "Oliver", writable: true }, getName: { set: function(value) { this.name = value; }, get: function() { return this.name; } } }) arr.getName = "Oli"; //寫入數據 console.log(arr.getName); //讀取數據
定義稀疏數組:prototype
var arr0 = [,,,]; // 稀疏 var arr1 = [1,,2,]; // 稀疏 var arr2 = new Array(3); // 稀疏 var arr3 = new Array(); arr3.length = 3; // 稀疏 var arr4 = [1,2,3]; delete arr4[0]; // 稀疏 // 如下都是非稀疏 var arr5 = [undefined, undefined, undefined]; var arr6 = new Array(3); arr6[0] = undefined; arr6[1] = undefined; arr6[2] = undefined;
須要注意的是當在數組直擊量中省略值時不回建立稀疏數組。省略的元素在數組中是存在的,值是undefined,能夠用in操做符檢測code
判斷是不是稀疏數組:對象
index in array繼承
forEach索引
如:下面哪些是稀疏數組element
length屬性
另外能夠用Object.defineProperty()讓數組的length屬性變爲只讀:
var arr = [,,,]; Object.defineProperty(arr, "length", { writable: false }) arr.length = 10; //嚴格模式下報錯
也能夠用preventExtensible、seal、freeze來設置權限;
var arr = [,,,]; Object.preventExtensions(arr); console.log(arr.length); //3 arr.push("hello"); //嚴格模式下報錯
pop方法
push方法
shift方法
unshift方法
splice方法
delete方法
須要注意的是delete操做不會影響數組的長度
var arr = [1,2,3,4]; delete arr[2]; console.log(arr.toString()); //1,2,,4 變成了稀疏數組
使用for循環是遍歷數組元素最多見的方法:
// let o = { // name: "Oliver", // age: 18 // }; let o = ["Oliver", 18]; var keys = Object.keys(o); //屬性名數組 var values = []; for (var i = 0; i < keys.length; i++) { var key = keys[i]; values[i] = o[key]; }; console.log(keys.toString()); //屬性名 console.log(values.toString()); //值
或for-in循環:
for (let key in arr) { console.log(arr[key]); } // for (let key in arr) { // if (!arr[key]) { // continue; // } // console.log(arr[key]); // }
for-in循環會枚舉到繼承的屬性,須要過濾:
for (let key in arr) { if (!arr.hasOwnProperty(key)) { continue; } console.log(arr[key]); }
最好不要用forin循環,遍歷多是升序也可能不是。
ES5中規定了新的方法forEach():
let arr = ["Oliver",,null,,,,undefined, 18]; arr.forEach( function(element, index) { console.log(element); console.log(index); }); //Oliver //0 //null //2 //undefined //6 //18 //7
所謂的多維數組在JS中就是數組的數組;
let arr = ["Oliver",,null,,,,undefined, 18]; console.log(arr.length); //8 var result = arr.join(" "); console.log(result); //Oliver 18 console.log(result.split(" ").length); //8 console.log(result.split(" ").toString()); //Oliver,,,,,,,18
let arr = [213, 23, 2123, 1, 4, "Oliver", "Alice", "ali", "oli"]; console.log(arr.sort().toString()); //1,2123,213,23,4 console.log(arr.sort(compare).toString()); //1,2123,213,23,4,ali,Alice,oli,Oliver function compare(a, b) { var a = a.toString().toLowerCase(); var b = b.toString().toLowerCase(); if (a > b) { //從小到大 return 1; } else if (a = b) { return 0; } else { return -1; } }
let arr = [213, 23,1,3,4,43]; var a = arr.splice(1,0,"hello"); console.log(arr.toString()); //213,hello,23,1,3,4,43 console.log(a.toString()); //空 沒有元素被刪除
接收一個函數,該函數能夠有三個參數:
數組元素
元素的索引
數組自己
語法:
array.forEach( function(element, index, array) { // statements });
let arr = [1,2,3,4,5]; arr.forEach( function(element, index, array) { switch (arr[index]) { case 1: array[index] = element + "st"; break; case 2: array[index] = element + "nd"; break; case 3: array[index] = element + "rd"; break; default: array[index] = element + "th"; break; } }); console.log(arr.toString()); //1st,2nd,3rd,4th,5th
該方法將調用的數組的每一個元素傳遞給指定的函數,並返回一個數組,包含該函數的返回值,也就是說,傳遞給map方法的函數必須有返回值。map方法返回的是新的數組
語法:
var newArray = array.map(function (item) { // body... })
let arr = [1,2,3,4,5]; let newArray = arr.map(function (item) { var index = arr.indexOf(item); if (arr[index + 1]) { return item + arr[index + 1] } }); console.log(newArray.join(";"));
該方法接收的函數是用來邏輯斷定的,若是爲真,則將該子集的成員添加到一個做爲返回值中的數組中;
語法:
var newArray = array.filter(function (x) { // body... });
var arr = [1, 2, 3, 4, 5, 6]; var smaller = arr.filter(function(x) { if (x < 4) return true; }); console.log(smaller.toString()); //1,2,3 var doubles = arr.filter(function(a, b) { if ((a + b) === 5) { return true } }); console.log(doubles.toString()); //3
filter方法會跳過稀疏數組中缺乏的元素,返回的數組是稠密的,能夠用來壓縮稀疏數組
var arr = [1, , undefined, , null, 6]; var anotherA = arr.filter(function(item) { return true; }); console.log(anotherA.toString()); //1,,,6
也能夠壓縮空缺並刪除undefined和null元素
var arr = [1, , undefined, , null, 6]; var anotherA = arr.filter(function(item) { return item !== undefined && item !== null; }); console.log(anotherA.toString()); //1,6
every方法,當且僅當數組中的成員在斷定函數中都返回true,才返回true;
some方法,至少有一個數組中的成員在斷定函數中返回true,就返回true;
reduce方法
將數組進行組合,生成單個值,第二個參數爲初始值(若是沒有指定初始值,那麼使用數組的第一個元素做爲其初始值)
語法:
var result = array.reduce(function(previous, current, index, array) { //body... }, initialValue);
var arr = [1,2,3,4,5,6]; var result = arr.reduce(function (x,y) { return x + y; }, 0); console.log(result); //21
實際運用(多維數組的扁平化):
var matrix = [ [1, 2], [3, 4], [5, 6, 7], [8, 9, 10, 11] ]; var result = matrix.reduce(function(previous, current, index, array) { return previous.concat(current); }); console.log(result.toString()); //1,2,3,4,5,6,7,8,9,10,11
reduceRight方法(從右到左的順序)
var matrix = [ [1, 2], [3, 4], [5, 6, 7], [8, 9, 10, 11] ]; var result = matrix.reduceRight(function(previous, current, index, array) { return previous.concat(current); }); console.log(result.toString()); //8,9,10,11,5,6,7,3,4,1,2
檢測是否數組:
Array.isArray()
Object.prototype.toString.call()
console.log(Array.isArray([])); //True console.log(Object.prototype.toString.call([]).slice(8, -1)); //Array
建立類數組對象
//新建空的Object,a let a = {}; //向a添加屬性 var i = 0; while (i < 10) { a[i] = i; i++ } //添加length屬性 a.length = i; //完成 //當作數組遍歷它 for (var i = 0; i < a.length; i++) { console.log(a[i]); }; //輸出0-9
字符串能夠當作數組,使用方括號語法訪問數據;可是字符串是不可變值,相似Array.prototype.push()等方法不可用。