const array = [1, 2, 3, 4, 5, 6, 7, 8];
// 第一个参数是 函数
// 第二个参数是 this 的指向 (可选)
Array.prototype._some = function(callback, thisArg = window){
// 第一个参数不是一个函数的话, 抛出异常
if (typeof callback !== 'function') {
throw new TypeError(callback + ' is not a function');
}
let flag = false;
const len = this.length;
for (let i = 0; i < len; i++) {
// 将处理后的数据 push 到新的数组中
if(callback.apply(thisArg, [this[i], i, this])){
flag = true;
break;
}
}
return flag;
}
/**
* @param item 当前正在处理的数组元素的值。
* @param index 当前正在处理的数组元素的索引。(可选)
* @param arr 正在遍历的数组本身。(可选):
* @returns {Boolean} 是否符要求
*/
function handleArr(item, index, arr) {
return item % 2 === 0; // 判断是否有偶数
}
const obj = {name: '张三'};
const allEven = array._some(handleArr, obj); // true
console.log(allEven)
// 简写
const _array = [1, 3, 5, 7];
const _allEven = _array._some((item) => item % 2 === 0); // false
console.log(_allEven)
JavaScript 之 手写 some
于 2024-03-12 16:27:11 首次发布
本文详细介绍了JavaScript中的Array.prototype._some方法,包括其功能、参数解释以及如何使用回调函数handleArr进行数组元素的偶数判断。通过实例展示了如何在对象上应用此方法并检查数组中是否存在偶数。
摘要由CSDN通过智能技术生成