Skip to content
Advertisement

Move element to last index of array, multidimensional

I have a simple loop on an array to produce a new array called dataBlock:

JavaScript

The dump produces this:

JavaScript

But I want total at the bottom like this:

JavaScript

How can I properly move the ‘total’ element to the last index of the array?

Advertisement

Answer

The simplest way to achieve this is to copy the total element, unset it, and then add it back again, which will automatically add it to the end of the array:

JavaScript

Output:

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement