The problem is also raised in node-red forum : - [Weird behaviour when processing an array of arrays having null values](https://discourse.nodered.org/t/weird-behaviour-when-processing-an-array-of-arrays-having-null-values/28615) So as input we are using the following sparse array:  Although the above screenshot shows `payload[1][1] = null` - actually this array element is not specified in javascript (= sparse javascript array). When running the following script: ``` payload.{ "row" : $ } ``` then the "null" cell gets removed as you can see in below output:  Is this expected behaviour ?