I already know about JavaScript's Math.max(13, 24, n) which returns the max number from the arguments passed but what I want to know is how to get a max number from a JavaScript array like: Math.max( [23, 482, 84, 0, 3] ) where Math.max doesn't works.