Returns the maximum value from a list.
This function does not generate a change.
array.max()
None
The maximum value of all values in a list. A lookup_err() is raised if the list is empty.
This code shows an example using max():
[1, 4, 2, 9, 7, 8, 9, 3, 1].max();
Return value in JSON format
9