javascript中的顶级函数是什么意思
发布网友
发布时间:2022-04-19 01:10
我来回答
共1个回答
热心网友
时间:2022-04-19 02:39
说的是高阶函数吧
/**
* 高阶函数 - 操作函数的函数,可以把一个或者多个函数作为参数,并返回一个新的函数;
*/
function not(f){
return function(){ // 这里 return 的是函数哦
/*var result = !f.apply(this,arguments);
if(!result){
console.log(arguments[0]);
}
return result;*/
return !f.apply(this,arguments);
}
}
/* 数组 every 方法的回调函数,这个方法有三个参数:
* value(当前元素的值)、
* index(当前元素的索引)、
* array(数组实例)。
*/
function even(value, index, ar) {
/*var result = value % 2 === 0;
if(!result){
console.log(arguments[0]);
}
return result;*/
return value % 2 === 0;
}
var arr = [2, 5];
/**
* every 方法会按升序顺序对每个数组元素调用一次传入 callback 函数,直到 callback 函数返回 false;
* 如果找到导致 callback 返回 false 的元素,则 every 方法会立即返回 false。 否则,every 方法返回 true;
* 如果 callback 参数不是函数对象,则将引发 TypeError 异常;
* thisArg 可选。可在 callback 函数中为其引用 this 关键字的对象。
* 如果省略 thisArg,则 undefined 将用作 this 值。
* eg. array1.every(callback[, thisArg])
*/
if (arr.every(even)) {
console.log("All are even.");
} else {
console.log("Some are not even.");
}
if (arr.every(not(even))) {
console.log("All are odd.");
} else {
console.log("Some are not odd.");
}