Question
Strange behavior in a!forEach, null - {}
Please observe the result of these forEach, (1. and 2.):
1.
a!forEach(
items: {1,2,3,4,5},
expression:
if ( fv!item > 3,
fv!item,
{}
)
)
results in

meanwhile
2.
a!forEach(
items: {1,2,3,4,5},
expression:
if ( fv!item > 3,
fv!item,
null
)
)
results in

Question: Why forEach 1. does not outcome five members in the list?, I expected this result
- List of Variant - 0 items
- List of Variant - 0 items
- List of Variant - 0 items
- 4(Number (Integer))
- 5(Number (Integer))
