如何在JavaScript中将数组分成两半

How can you divide an array in 2 parts, divided exactly in the middle?

如何将数组分为两部分,准确地分成中间部分?

Use the Array instance splice() method:

使用Array实例的splice()方法:

const list = [1, 2, 3, 4, 5, 6]
const half = Math.ceil(list.length / 2);    

const firstHalf = list.splice(0, half)
const secondHalf = list.splice(-half)

If the list contains an even number of items, the result is split with exactly half the items.

如果列表包含偶数个项目,则结果将被精确地拆分为一半的项目。

If the number is odd, for example

例如,如果数字为奇数

[1, 2, 3, 4, 5]

The result will be

结果将是

[ 1, 2, 3 ]
[ 4, 5 ]

翻译自: https://flaviocopes.com/how-to-cut-array-half-javascript/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值