-
Expressions to sort numbers in descending order.
Hello,
Please, I found this expression in the old feed but it is not working for AE 2020. I am actually trying to create something like a league table and would like to link the values to the source text to arrange them in descending order.
a = [12,5,9,10,3];
a.sort(function(a, b){return a – b});
a.toSource();Could there be a way out?
Thanks in advance
Obed