Hi all
I am looking for a function for reversing (flip) table order?
So for example if you have:
local tableA = {1, 5, 3}
I am looking for a function revereseOrder to get following after applying it to tableA:
local tableA = {3, 5, 1}
How to do that?
Many thanks!
G