Find the last index that corresponds to a given condition

Hello
How can I find the last index that corresponds to a given condition?
For example, in matlab i would do:
find(f) <= 1000,1,‘last’)
Is there any correspondent function in julia?
Thanks in advance

findlast(<=(1000), f)
1 Like

Hello @mikmoore
Thank you