Is there an isNull()or isEmpty() action?

1
As part of defensive coding it is suggested to do empty checks on values. Does anyone knows if there is a short call for empty checks like known from other languages? Something like isEmpty([checkValue], [ValueInEmptyCase) eg. isEmpty($value, 0)?
asked
2 answers
1

There is not but it would be extremely helpful to have such a method available in change variable and change object actions. Put it to the Idea forum and you will get my upvote.

answered
0

There are some instances where you can set defaults such as parsing values using calls like parseIntegerparseDecimal, or parseDateTime.

Apart from that, it should be trivial to create some reusable submicroflows to achieve the functionality you require.

answered