HOw to find middle of array

is this correct

var mid = math.floor((0 + array.length)/2)

from here you could use array.slice to divide the array into two equal sized arrays?

That would be possible if you have an even length array, but dividing an odd-sized array in to two equal sized arrays could be a challenge.

Did you try?

You can divide the array in two equal sized arrays if the array contains an even number of elements. If it’s uneven, one part will have one element more than the other part.

You just beat me to it :smiley:

Great minds, eh?

OK so now that I have the middle figured, how can I split the array into two arrays?

I’d say that the .splice() method would be the best way to do that.