手动实现lodash功能(chunk)(1)

本文介绍了手动实现lodash中chunk函数的过程,通过实例探讨如何在没有lodash库的情况下完成数组分块操作。
摘要由CSDN通过智能技术生成

上次ctve就考到我实现lodash的get方法
想着有空就做一下其他的吧。

1.土包子的chunk

lodash的效果

Array.prototype.chunk = function(count){
	let result = [];
	//遍历输出成员
	this.forEach((item,index) => {
		//
		let temp = Math.floor(index / count);
		//检验数组是否初始化
		if(!(result[temp] instanceof Array)){
			result[temp] = new Array;
		}
		result[temp].push(item);
	})
	return result;
}

我实现的效果

lodash

function chunk(array, size) {
  size = Math.max(size, 0)
  const length = array == null ? 0 : array.length
  if (!length || size < 1) {
    return []
  }
  let index = 0
  let resIndex = 0
  const result = new Array(Math.ceil(length / size))

  while (index < length) {
    result[resIndex++] = slice(array, index, (index += size))
  }
  return result
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值