Smallest Number From List
-
Im trying to pick a line with smallest number from list.
Like that:
Math.min([[NEW_LIST]])List contains 3 integers but it returns null instead.
How can you do that?
-
[[MIN]] = Math.min.apply(null, [[NEW_LIST]]);
||
[[MAX]] = Math.max.apply(null, [[NEW_LIST]]);
-
@Fox Thanks! will try immediately