I\'m trying to get hold of the largest value in an array, while still preserving the item labels. I know I can do this by running sort(), but if I do so I simply lose the la
Find highest number, including negative:
return max([abs(max($array)),abs(min($array))]);