手动实现一个Array的every,fill方法
昨天在写copyWithin方法的时候出bug了,最后这个方法测试的时候一直有问题,按文档上我应该是对的,但浏览器却报错,故这个方式先放放。昨天没写,今天补一个
every
const array1 = [1, 30, 39, 29, 10, 13];
Array.prototype.myEvery = function(callback) {
if(this.length === 0){
return true;
}
for(let c of this){
if(!callback(c)){
return false;
}
}
return true;
}
let res = array1.myEvery(function(item){
return item<20;
})
console.log(res)
fill
const array1 = [1, 2, 3, 4];
Array.prototype.myFill = function(value,...arr) {
if(arr.length === 0){
for(let i = 0;i<this.length;i++){
this[i] = value;
}
}else if(arr.length === 1){
for(let i = arr[0];i<this.length;i++){
this[i] = value;
}
}else{
for(let i = arr[0];i<arr[1];i++){
this[i] = value;
}
}
return this;
}
console.log(array1.myFill(5,1))