Answers for "js split from half"

2

js split array in half

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)
Posted by: Guest on October-11-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language