Skip to content
Advertisement

fill in the multidimensional array with missing keys

I have the following multidimensional array. I had to create keys the way it looks to group them accordingly.

JavaScript

However, I need all the subarrays to have the same keys. Missing ones should be filled with a value of 0. The final array should be like below so that all subarrays have equal length.

JavaScript

Advertisement

Answer

You need a simple + operator. As from manual:

The + operator returns the right-hand array appended to the left-hand array; for keys that exist in both arrays, the elements from the left-hand array will be used, and the matching elements from the right-hand array will be ignored.

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