What is the expression to return the iid value of an array value?
example.
Player just scores 432 in a game, which is saved into an array, by Ajax.lastdata in ascending order.
0 ... 567
1 ... 432
2 ... 98
I would like to return the iid of value 432
I can then use, array.at(1), to display it to text as a basic ranking system
cheers