Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
splice is nice solution in Clear category for Split List by vincent.tscherter
function splitList(v: number[]): any[] {
return [ v.splice(0, Math.ceil(v.length/2)), v]
}
April 23, 2020
Comments: