# Liquid arrays now support the `find`, `find_index`, `has`, and `reject` filters — Shopify developer changelog --- ## Liquid arrays now support the `find`, `find_index`, `has`, and `reject` filters We’ve introduced the following new filters to improve how you handle arrays in your Liquid templates. Now, you can quickly retrieve or check for items in an array without writing verbose loops or complex conditional logic. - **`find`**: Returns the first item that matches your condition - **`find_index`**: Returns the index of the item that matches your condition - **`has`**: Returns `true` when the array includes an item that matches your condition - **`reject`**: Returns an array without items matching your condition These filters make your Liquid code more concise and declarative. To learn more, check out the [Liquid arrays API docs](https://shopify.dev/docs/api/liquid/filters/array-filters). Happy coding! *Published: February 12, 2025* Tags: Themes, New Link: https://shopify.dev/changelog/liquid-arrays-now-support-the-find-findindex-has-and-reject-filters ---