1.什么是高阶函数?
高阶函数(Higher-order function),满足下两个任意一个条件即为高阶函数:
1. 接受一个或多个函数作为参数输入
2. 输出一个函数
2.高阶函数有什么用?
JavaScript支持如下几种类型:
1. undefined
2. String
3. Object
4. null
5. Number
6. Boolean
重要的是函数也可以作为JavaScript的一种数据类型。
在JavaScript中函数是一等公民,即函数可以被赋值给变量,被变量引用,这便使得函数可以作为参数,在其他函数间相互传递。
一般而言,高阶函数通常用于抽象通用问题。即,高阶函数就是定义抽象。抽象让我们专注于预定的目标而无需关心底层的概念与实现。
javascript中把函数用作数据的4种方式:
1. 把它们当作参数传给其它函数
2. 把他们设定成对象属性
3. 保存在数组中
4. 把它们设为变量的形式
例如通过高阶函数实现遍历:
const forEach = (array,fn) => {
for(let i=0;array.length;i++){
fn(array[i])
}
}
2.常见的高阶函数
2.1 forEach()
forEach()接受另一个函数作为参数。它用于以一种简单的方式循环遍历数组项。它可以接受三个类型的参数(元素,值和索引)。
var arr = [1, 2, 3, 4, 5];
// Using ES5
arr.forEach(function(item){
if(item > 3){
console.log(item);// Returns 4 and 5
}
});
// Using ES6
arr.forEach(item =>{
if(item > 3){
console.log(item); // Returns 4 and 5
}
});
使用该方法forEach()在数字数组上循环并仅返回大于3的数字,代码比使用for循环更干净。
2.2 Filter()
filter()在数组的每个元素上调用一个函数,并返回一个仅包含该函数返回的元素的新数组true。换句话说,它根据传递给它的函数过滤数组。就像map方法一样,但是它不需要修改原始数组就可以完成工作。
const arr = [1, 2, 3, 4, 5];
// Using ES5
var filtered = arr.filter(function(item){
return item < 3;
});
console.log(filtered); // Returns: [1, 2]
// Using ES6
const filtered = arr.filter(item => item < 3);
console.log(filtered); // Returns: [1, 2]
在上面的示例中,我们仅过滤了给定数组中小于3的数字。回调函数接受三个参数。第一个参数是当前正在处理的元素;第二个是该元素的索引;第三个是在其上filter调用该方法的数组。但是在此示例中,我们仅使用了一个参数。
2.3 Map()
Map()返回一个数组,该数组的长度与调用该数组的长度相同。只要它的回调函数没有改变,它也不会改变原始数组。它也可以采用三个类型参数(元素,值和索引)。
const users = [
{ name: 'John', age: 34 },
{ name: 'Amy', age: 20 },
{ name: 'camperCat', age: 10 }
];
const names = users.map(user => user.name);
console.log(names); //Returns: [ 'John', 'Amy', 'camperCat' ]
如上所示,我们map在users数组上使用了方法,以返回仅包含用户名称作为元素的新数组。为简单起见,该示例仅使用callback(element)的第一个参数。
2.4 reduce()
reduce()允许使用更通用的数组处理形式,并且filter与map可以作为特殊应用派生出reduce。它遍历数组中的每个项目并返回一个值。这是通过将其作为参数回调来实现的。
该函数reduce有两个位置参数,第一个是累加器,另一个是迭代值,它返回累加值。
请参见下面的示例,在用户数组上使用,以返回所有用户年龄的总和。
const users = [
{ name: 'John', age: 34 },
{ name: 'Amy', age: 20 },
{ name: 'camperCat', age: 10 }
];
const sumOfAges = users.reduce((sum, user) => sum + user.age, 0);
console.log(sumOfAges); //Returns: 64.
2.5 sort()
sort()对数组的项目进行排序。排序顺序可以是字母或数字,也可以是升序或降序。看下面的例子:
以升序对数组中的数字进行排序:
var points = [40, 100, 1, 5, 25, 10];
points.sort(function(a, b){
return a-b
}); // [1,5,10,25,40,100].
//使用es6降序排列
points.sort((a,b)=> b - a); // [100,40,25,10,5,1].
你还可以使用该方法执行其他操作sort(),例如按字母顺序对数组进行排序或获取数组中的最小值,等等。
2.6 every()
every()检查数组中的每个元素是否通过特定测试。它返回一个布尔值(true / false)。
let numbers = [1, 5, 8, 0, 10, 11];
numbers.every(currentValue => currentValue < 10);// Returns false
2.7 some()
some()有点类似于该方法every(),它检查数组中的任何元素是否通过特定测试。它还返回一个布尔值(true / false)。
下面的示例检查数组中的任何元素numbers是否小于10:
let numbers = [10, 50, 8, 220, 110, 11];
numbers.some(currentValue => currentValue < 10);// Returns true
3.链式调用
需求:
const nums = [10,20,111,222,333,40,50];
1.取出数组中所有小于100的数字;
2.将小于100的数字乘以2;
3.求和
let total = nums.filter(
n => n<100
).map(
n => n*2
).reduce((preValue,n) => preValue+n, 0);
console.log(total); //240
Comments | 2 条评论
Warning: Undefined variable $m in /www/wwwroot/blog.moonlet.cn/wp-content/themes/Sakura/functions.php on line 1734
Warning: Trying to access array offset on value of type null in /www/wwwroot/blog.moonlet.cn/wp-content/themes/Sakura/functions.php on line 1734
Warning: Undefined variable $m in /www/wwwroot/blog.moonlet.cn/wp-content/themes/Sakura/functions.php on line 1734
Warning: Trying to access array offset on value of type null in /www/wwwroot/blog.moonlet.cn/wp-content/themes/Sakura/functions.php on line 1734
Warning: Undefined variable $ip1num in /www/wwwroot/blog.moonlet.cn/wp-content/themes/Sakura/functions.php on line 272
Warning: Undefined variable $ip2num in /www/wwwroot/blog.moonlet.cn/wp-content/themes/Sakura/functions.php on line 272
Warning: Undefined variable $ipAddr2 in /www/wwwroot/blog.moonlet.cn/wp-content/themes/Sakura/functions.php on line 344
Warning: Undefined variable $ipAddr1 in /www/wwwroot/blog.moonlet.cn/wp-content/themes/Sakura/functions.php on line 350
湖北省黄冈市 广电网
Warning: Undefined variable $ip1num in /www/wwwroot/blog.moonlet.cn/wp-content/themes/Sakura/functions.php on line 272
Warning: Undefined variable $ip2num in /www/wwwroot/blog.moonlet.cn/wp-content/themes/Sakura/functions.php on line 272
Warning: Undefined variable $ipAddr2 in /www/wwwroot/blog.moonlet.cn/wp-content/themes/Sakura/functions.php on line 344
Warning: Undefined variable $ipAddr1 in /www/wwwroot/blog.moonlet.cn/wp-content/themes/Sakura/functions.php on line 350
湖北省黄冈市 广电网
@yyy gogogo!
Warning: Undefined variable $return_smiles in /www/wwwroot/blog.moonlet.cn/wp-content/themes/Sakura/functions.php on line 1078
Warning: Undefined variable $robot_comments in /www/wwwroot/blog.moonlet.cn/wp-content/themes/Sakura/comments.php on line 97