1期贫、引言
ES5中數(shù)組新增了不少東西,現(xiàn)在ES5使用也比較普及怪得,了解這些新增的方法,對(duì)我們使用JavaScript也有不少的好處
下面的ES5新增寫(xiě)的數(shù)組方法:
1卑硫、forEach
2徒恋、map
3、filter
4欢伏、some
5入挣、every
6、indexOf
7硝拧、lastIndexOf
8径筏、reduce
9、reduceRight
2障陶、forEach滋恬、map、filter
1抱究、forEach()方法是Array中最基本的一個(gè)恢氯,簡(jiǎn)單的循環(huán)和遍歷;但也可以對(duì)數(shù)組的每個(gè)元素執(zhí)行一次提供的函數(shù)
語(yǔ)法:
array.forEach(callback(currentValue, index, array){
//do something
}, this)
array.forEach(callback[, thisArg])
補(bǔ)充衍生:對(duì)比jQuery中的$.each
方法(callback中第一個(gè)參數(shù)正好和第二個(gè)參數(shù)相反)
$.each(array,callback(index, currentValue,array){
//do something
})
forEach方法中的callback函數(shù)接受三個(gè)參數(shù):
- currentValue:數(shù)組當(dāng)前項(xiàng)的值
- index : 數(shù)組當(dāng)前項(xiàng)的索引
- arrry : 數(shù)組對(duì)象本身
thisArg :可選參數(shù)媳维,當(dāng)給forEach傳遞了thisArg參數(shù),調(diào)用時(shí)遏暴,將傳遞給callback函數(shù)侄刽,作為它的this值。
demo1 :一個(gè)簡(jiǎn)單的例子
var sum = 0
var arr = [1,2,3,4]
arr.forEach(function(item,index,arr) {
console.log(arr[index] == item)
sum += item;
})
console.log(sum)
demo2 :使用thisArg的小例子
function Counter() {
this.sum = 0;
this.count = 0;
}
Counter.prototype.add = function(array) {
array.forEach(function(entry){
this.sum += entry
++this.count;
},this)
console.log(this);
}
var obj = new Counter();
obj.add([1,3,5,7]);
當(dāng)我們new一個(gè)新的對(duì)象時(shí),構(gòu)造函數(shù)的this將綁定到新對(duì)象上,那么這里的thisArg參數(shù)(this)即在new新對(duì)象時(shí)腻豌,綁定到了新對(duì)象上
demo3 :使用thisArg升級(jí)版例子
var database = {
users: ["hello", "world", "wu"],
sendEmail: function (user) {
if (this.isValidUser(user)) {
console.log("你好墓陈," + user);
} else {
console.log("抱歉,"+ user +"恕沫,你不是本家人");
}
},
isValidUser: function (user) {
return /^w/.test(user);
}
};
// 給每個(gè)人法郵件
database.users.forEach( // database.users中人遍歷
database.sendEmail, //callback函數(shù) -> 發(fā)送郵件
database // thisArg ->calllback函數(shù)中的this指向database
);
2、 map 這里的map不是’地圖‘的意思,而指的’映射‘所计,
[].map();
,基本的用法和forEach類(lèi)似
mdn: map() 方法創(chuàng)建一個(gè)新數(shù)組,其結(jié)果是該數(shù)組中的每個(gè)元素都調(diào)用一個(gè)提供的函數(shù)后返回的結(jié)果
語(yǔ)法:
var new_array = arr.map(function callback(currentValue, index, array) {
// return element for new_array
}[, thisArg])
demo1:一個(gè)簡(jiǎn)單的小例子
var data = [1,2,3,4]
var arrSquares = data.map(function(item){
return item*item //callback需要有return值团秽,若無(wú)則返回undefined
})
console.log(arrSquares)
demo2:利用map方法獲取對(duì)象數(shù)組中的特性屬性值
var users = [
{name: "wolrd", "email": "world@gmail.com"},
{name: "hello", "email": "hello@gmail.com"},
{name: "wu", "email": "wu@gmail.com"}
];
var emails = user.map(function(user) {
return user.email //遍歷數(shù)組內(nèi)的每一個(gè)對(duì)象
})
console.log(emails)
console.log(emails.join(","))
延伸:在字符串String中使用map方法
demo1:獲取字符串中每一個(gè)字符的ASCII碼
var a = Array.prototype.map.call('hello world',function(x){
return x.charCodeAt(0);
})
console.log(a)
通過(guò)call方法使String->'hello world'有通過(guò)map方法來(lái)執(zhí)行轉(zhuǎn)換操作主胧,將this綁定到’hello world‘字符串上
demo1:反轉(zhuǎn)字符串
var str = '12345';
var a = Array.prototype.map.call(str,function(x) {
return x
}).reverse().join('')
console.log(a)
3叭首、filter為“過(guò)濾”、“篩選”之意踪栋。指數(shù)組filter后焙格,返回過(guò)濾后的新數(shù)組。用法與map類(lèi)似
mdn:filter() 方法創(chuàng)建一個(gè)新數(shù)組, 其包含通過(guò)所提供函數(shù)實(shí)現(xiàn)的測(cè)試的所有元素夷都。
***語(yǔ)法:var new_array = arr.filter(callback[, thisArg])
demo:
function isBigEnough(value) {
return value>10;
}
var filtered = [12,5,8,101].filter(isBigEnough)
console.log(filtered)