use apply:
Math.min.apply(null,[1,2,3]);
From devguru :
Function.apply(thisArg[, argArray])The apply method allows you to call and specify that the keyword this will refer to the context of this function. The argument to thisArg must be an object. Within the context of the called function, this will mean this Arg. The second argument to the apply method is an array. Elements of this array will be passed as arguments to the called function. The ArgArray parameter can be either an array of literal or obsolete function property arguments.
(: null), - , Math.min. "".