# FILTER

### Description

With `FILTER` you can remove certain elements from a list. &#x20;

### Example

```
FILTER([true, true, false], true)
```

This filters out all the `true` values in the list evaluating to `[false]`.

```
FILTER([1, 4, 2, 1, 3, 1, 4], 4)
```

This removes `4` from the list evaluating to `[1, 2, 1, 3, 1]`.
