filter([parseDate("2023-01-01"), parseDate("2023-12-31"), parseDate("2022-05-15")], current > parseDate("2023-01-02"))
-
Let’s say you have a list of dates. The condition compares each date in the list against January 2, 2023, to check if it is greater than that date. The resulting list will include only those dates that meet this criterion.