Empty items are not falsey values; they are empty slots in an array.
> const someEmptyItems = ["index0",,,"index3"];
undefined
> someEmptyItems;
[ 'index0', <2 empty items>, 'index3' ]
> someEmptyItems[1];
undefined
> someEmptyItems.length;
4
Logging the array helps spot the empty array items nanually.
How can I detect empty array items programmatically?
How can I programmatically remove empty items from an array without mutating other (not-empty) values?