其他分享
首页 > 其他分享> > 一天n个仿lodash函数实现-chunk、compat

一天n个仿lodash函数实现-chunk、compat

作者:互联网

从数组系列开始-chunk和compact

chunk给数组分组

按size设步长来遍历组装

function chunk(arr, size){
  const result = [];
  // 小于1,下面循环会有问题,也不合理
  if(size<1){
    return [];
  }
  for(let i=0;i<arr.length;i+=size){
    result.push(arr.slice(i, i+size))
  }
  return result;
}

compact过滤数组中的falsey元素(false,null,0,"",undefined,NaN)

直接filter即可,falsey元素条件判断都为false

function compact(arr) {
  return arr.filter(item=>item)
}

lodash一般不用array的属性方法,而是for遍历,比如compact用了for of

标签:compat,compact,arr,个仿,false,lodash,chunk,数组,size
来源: https://www.cnblogs.com/dont27/p/16364617.html