在JavaScript中,建立陣列可以使用JavaScript原生數組函數講解
建構函數,或是使用陣列直接量[]
,後者是首選方法。 JavaScript原生數組函數講解
物件繼承自Object.prototype
,對陣列執行typeof
運算子傳回object
而不是array
。然而,[] instanceof JavaScript原生數組函數講解
也回傳true
。也就是說,類別數組物件的實作更複雜,例如strings
物件、arguments
對象,arguments
物件不是JavaScript原生數組函數講解
的實例,但有length
屬性,並能透過索引取值,所以能像陣列一樣進行循環運算。
在本文中,我將複習一些陣列原型的方法,並探討這些方法的用法。
迴圈:.forEach
#判斷:.some
和.every
區分.join
和.concat
堆疊和佇列的實現:.pop
, .push
, .shift
,和.unshift
.map
.filter
和.reduceRight
#循環:.forEach
#這是JavaScript中最簡單的方法,但IE7和IE8不支援此方法。
有一個回呼函數作為參數,遍歷陣列時,每個陣列元素都會呼叫它,回呼函數接受三個參數:
此外,可以傳遞可選的第二個參數,作為每次函數呼叫的上下文(this
).##<pre class="prettyprint">[&#39;_&#39;, &#39;t&#39;, &#39;a&#39;, &#39;n&#39;, &#39;i&#39;, &#39;f&#39;, &#39;]&#39;].forEach(function (value, index, array) { this.push(String.fromCharCode(value.charCodeAt() + index + 2))
}, out = [])out.join(&#39;&#39;)// <- &#39;awesome&#39;123456</pre>
後文會提及
。 不能中斷
.forEach循環,並且拋出異常也是不明智的選擇。幸運的事我們有另外的方式來中斷操作。
判斷:.some
和
#如果你用過.NET中的列舉,這兩個方法和 .Any(x => x.IsAwesome)
、 類似。 和
.forEach的參數類似,需要一個包含
value
,index
,和array
三個參數的回呼函數,並且也有一個可選的第二個上下文參數。 MDN對.some的描述如下:some
true.every。如果找到目標元素,
some
立即傳回true
,否則some回傳false。回呼函數只對已經指定值的陣列索引執行;它不會對已刪除的或未指定值的元素呼叫。max = -Infinity satisfied = [10, 12, 10, 8, 5, 23].some(function (value, index, array) { if (value > max) max = value return value < 10}) console.log(max)// <- 12satisfied// <- true1234567891011注意,當回呼函數的
value 時,中斷函數循環。
的運作原理和.some
類似,但回呼函數是傳回false而不是true。 區分
.join
和
#.join
和 經常混淆。 .join(separator)
以separator
作為分隔符號拼接數組元素,並傳回字串形式,如果沒有提供separator
,將使用預設的 ,
。 .concat
會建立一個新數組,作為來源數組的淺拷貝。
var a = { foo: 'bar' } var b = [1, 2, 3, a] var c = b.concat() console.log(b === c)// <- falseb[3] === a && c[3] === a// <- true123456789
.pop
, .push
, .shift
和 .unshift
每个人都知道.push
可以再数组末尾添加元素,但是你知道可以使用[].push('a', 'b', 'c', 'd', 'z')
一次性添加多个元素吗? .pop
方法是.push
的反操作,它返回被删除的数组末尾元素。如果数组为空,将返回void 0 (undefined)
,使用.pop
和.push
可以创建LIFO (last in first out)
栈。
function Stack () { this._stack = [] } Stack.prototype.next = function () { return this._stack.pop() } Stack.prototype.add = function () { return this._stack.push.apply(this._stack, arguments) } stack = new Stack() stack.add(1,2,3) stack.next()// <- 31234567891011121314151617
相反,可以使用.shift
和 .unshift
创建FIFO (first in first out)
队列。
function Queue () { this._queue = [] } Queue.prototype.next = function () { return this._queue.shift() } Queue.prototype.add = function () { return this._queue.unshift.apply(this._queue, arguments) } queue = new Queue() queue.add(1,2,3) queue.next()// <- 1Using .shift (or .pop) is an easy way to loop through a set of array elements, while draining the array in the process. list = [1,2,3,4,5,6,7,8,9,10]while (item = list.shift()) { console.log(item) } list// <- []123456789101112131415161718192021222324252627
.map
.map
为数组中的每个元素提供了一个回调方法,并返回有调用结果构成的新数组。回调函数只对已经指定值的数组索引执行;它不会对已删除的或未指定值的元素调用。
JavaScript原生數組函數講解.prototype.map
和上面提到的.forEach
、.some
和 .every
有相同的参数格式:.map(fn(value, index, array), thisArgument)
values = [void 0, null, false, ''] values[7] = void 0result = values.map(function(value, index, array){ console.log(value) return value })// <- [undefined, null, false, '', undefined × 3, undefined]12345678
undefined × 3
很好地解释了.map
不会对已删除的或未指定值的元素调用,但仍然会被包含在结果数组中。.map
在创建或改变数组时非常有用,看下面的示例:
// casting[1, '2', '30', '9'].map(function (value) { return parseInt(value, 10) })// 1, 2, 30, 9[97, 119, 101, 115, 111, 109, 101].map(String.fromCharCode).join('')// <- 'awesome'// a commonly used pattern is mapping to new objectsitems.map(function (item) { return { id: item.id, name: computeName(item) } })12345678910111213141516
.filter
filter
对每个数组元素执行一次回调函数,并返回一个由回调函数返回true
的元素组成的新数组。回调函数只会对已经指定值的数组项调用。
通常用法:.filter(fn(value, index, array), thisArgument)
,跟C#中的LINQ表达式和SQL中的where
语句类似,.filter
只返回在回调函数中返回true
值的元素。
[void 0, null, false, '', 1].filter(function (value) { return value })// <- [1][void 0, null, false, '', 1].filter(function (value) { return !value })// <- [void 0, null, false, '']123456789
.sort(compareFunction)
如果没有提供
compareFunction
,元素会被转换成字符串并按照字典排序。例如,”80”排在”9”之前,而不是在其后。
跟大多数排序函数类似,JavaScript原生數組函數講解.prototype.sort(fn(a,b))
需要一个包含两个测试参数的回调函数,其返回值如下:
a在b之前则返回值小于0
a和b相等则返回值是0
a在b之后则返回值小于0
[9,80,3,10,5,6].sort()// <- [10, 3, 5, 6, 80, 9][9,80,3,10,5,6].sort(function (a, b) { return a - b })// <- [3, 5, 6, 9, 10, 80]1234567
.reduce
和.reduceRight
这两个函数比较难理解,.reduce
会从左往右遍历数组,而.reduceRight
则从右往左遍历数组,二者典型用法:.reduce(callback(previousValue,currentValue, index, array), initialValue)
。 previousValue
是最后一次调用回调函数的返回值,initialValue
则是其初始值,currentValue
是当前元素值,index
是当前元素索引,array
是调用.reduce
的数组。
一个典型的用例,使用.reduce
的求和函数。
JavaScript原生數組函數講解.prototype.sum = function () { return this.reduce(function (partial, value) { return partial + value }, 0) }; [3,4,5,6,10].sum()// <- 2812345678
如果想把数组拼接成一个字符串,可以用.join
实现。然而,若数组值是对象,.join
就不会按照我们的期望返回值了,除非对象有合理的valueOf
或toString
方法,在这种情况下,可以用.reduce
实现:
function concat (input) { return input.reduce(function (partial, value) { if (partial) { partial += ', ' } return partial + value }, '') } concat([ { name: 'George' }, { name: 'Sam' }, { name: 'Pear' } ])// <- 'George, Sam, Pear'123456789101112131415
.slice
和.concat
类似,调用没有参数的.slice()
方法会返回源数组的一个浅拷贝。.slice
有两个参数:一个是开始位置和一个结束位置。 JavaScript原生數組函數講解.prototype.slice
能被用来将类数组对象转换为真正的数组。
JavaScript原生數組函數講解.prototype.slice.call({ 0: 'a', 1: 'b', length: 2 }) // <- ['a', 'b']12
这对.concat
不适用,因为它会用数组包裹类数组对象。
JavaScript原生數組函數講解.prototype.concat.call({ 0: 'a', 1: 'b', length: 2 }) // <- [{ 0: 'a', 1: 'b', length: 2 }]12
此外,.slice
的另一个通常用法是从一个参数列表中删除一些元素,这可以将类数组对象转换为真正的数组。
function format (text, bold) { if (bold) { text = '<b>' + text + '</b>' } var values = JavaScript原生數組函數講解.prototype.slice.call(arguments, 2) values.forEach(function (value) { text = text.replace('%s', value) }) return text}format('some%sthing%s %s', true, 'some', 'other', 'things')// <- <b>somesomethingother things</b>123456789101112131415
.splice
.splice
是我最喜欢的原生数组函数,只需要调用一次,就允许你删除元素、插入新的元素,并能同时进行删除、插入操作。需要注意的是,不同于`.concat
和.slice
,这个函数会改变源数组。
var source = [1,2,3,8,8,8,8,8,9,10,11,12,13] var spliced = source.splice(3, 4, 4, 5, 6, 7) console.log(source)// <- [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 ,13]spliced// <- [8, 8, 8, 8]12345678
正如你看到的,.splice
会返回删除的元素。如果你想遍历已经删除的数组时,这会非常方便。
var source = [1,2,3,8,8,8,8,8,9,10,11,12,13]var spliced = source.splice(9) spliced.forEach(function (value) { console.log('removed', value) })// <- removed 10// <- removed 11// <- removed 12// <- removed 13console.log(source)// <- [1, 2, 3, 8, 8, 8, 8, 8, 9]12345678910111213
.indexOf
利用.indexOf
可以在数组中查找一个元素的位置,没有匹配元素则返回-1
。我经常使用.indexOf
的情况是当我有比较时,例如:a === 'a' || a === 'b' || a === 'c'
,或者只有两个比较,此时,可以使用.indexOf
:['a', 'b', 'c'].indexOf(a) !== -1
。
注意,如果提供的引用相同,.indexOf
也能查找对象。第二个可选参数用于指定开始查找的位置。
var a = { foo: 'bar' } var b = [a, 2] console.log(b.indexOf(1))// <- -1console.log(b.indexOf({ foo: 'bar' }))// <- -1console.log(b.indexOf(a))// <- 0console.log(b.indexOf(a, 1))// <- -1b.indexOf(2, 1)// <- 11234567891011121314151617
如果你想从后向前搜索,可以使用.lastIndexOf
。
in
在面试中新手容易犯的错误是混淆.indexOf
和in
操作符:
var a = [1, 2, 5]1 in a// <- true, but because of the 2!5 in a// <- false1234567
问题是in
操作符是检索对象的键而非值。当然,这在性能上比.indexOf快得多。
var a = [3, 7, 6]1 in a === !!a[1]// <- true1234
.reverse
该方法将数组中的元素倒置。
var a = [1, 1, 7, 8]a.reverse()// [8, 7, 1, 1]1234
.reverse
会修改数组本身。
译文出处:http://www.ido321.com/1568.html
本文根据@Nicolas Bevacqua的《Fun with JavaScript Native JavaScript原生數組函數講解 Functions》所译,整个译文带有我自己的理解与思想,如果译得不好或有不对之处还请同行朋友指点。如需转载此译文,需注明英文出处:http://modernweb.com/2013/11/25/fun-with-javascript-native-array-functions/。
以上是JavaScript原生數組函數講解的詳細內容。更多資訊請關注PHP中文網其他相關文章!