Math.min
Math.min($listOfNumbers) -> number
Description
Get the lowest numeric value in the list.
Returns 0
if the list is empty.
Math.min([5, 10, -33]) //= -33
Get the lowest numeric value in the list.
Returns 0
if the list is empty.
Math.min([5, 10, -33]) //= -33