In power automate, I found that there only exists indexOf function for string and no similar function for array.
Is there anyway to extract the index number of an array if element matches?
For example, I have an array variable named varCityArray which holds value like
[
"New York",
"London",
"Paris",
"Tokyo"
]
If I want to search for "Paris", it should return 2.