FILTER
Description
With FILTER
you can remove certain elements from a list.
Examples
This filters out all the true
values in the list evaluating to [false]
.
This removes 4
from the list evaluating to [1, 2, 1, 3, 1]
.
Last updated