Skip to content

Except except

except returns the items in the first list that are not in the second list.

(except [1 2 3 4 5] [2 4])
[1 3 5]