removeAllFromArray property

ArrayValue? removeAllFromArray
getter/setter pair

Removes all of the given elements from the array in the property.

If the property is not an array, or if the property does not yet exist, it is set to the empty array. Equivalent numbers of different types (e.g. 3L and 3.0) are considered equal when deciding whether an element should be removed. NaN is equal to NaN, and the null value is equal to the null value. This will remove all equivalent values if there are duplicates. The corresponding transform result will be the null value.

Implementation

ArrayValue? removeAllFromArray;