I have a list of numbers (all greater than 0), and I want to filter out only the even numbers from it using Power Automate. The array may not be sorted, and it can be any positive whole number less than 10,000.
I don't want to create an array of even numbers till 10,000 and then do intersection. Is there a better scalable solution please?
- Input Array:
[1, 2, 3, 4, 5, 6, 7, 8]
Output:
[2, 4, 6, 8]