Returns the minimum value from a list.
This function does not generate a change.
array.min()
None
The minimum value of all values in a list. A lookup_err() is raised if the list is empty.
This code shows an example using min():
["lemon", "apple", "cherry", "orange"].min();
Return value in JSON format
"apple"