| javascript Programming Glossary: math.max.applyJavascript collection http://stackoverflow.com/questions/12973706/javascript-collection  but really powerful trick function arrayMax arr return Math.max.apply Math arr respectively function arrayMin arr return Math.min.apply.. 
 How to determine size of Raphael object after scaling & rotating it? http://stackoverflow.com/questions/13046811/how-to-determine-size-of-raphael-object-after-scaling-rotating-it  posY  m.x maxX posY  m.x maxX maxY  m.x posX maxY  return Math.max.apply Math x Math.min.apply Math x function getHeight var posX this.attr.. posY  m.y maxX posY  m.y maxX maxY  m.y posX maxY  return Math.max.apply Math y Math.min.apply Math y r.getX getX r.getY getY r.getWidth.. 
 How might I find the largest number contained in a JavaScript array? http://stackoverflow.com/questions/1379553/how-might-i-find-the-largest-number-contained-in-a-javascript-array 
 Javascript max() function for 3 numbers http://stackoverflow.com/questions/1418569/javascript-max-function-for-3-numbers  with the help of apply Array.prototype.max function return Math.max.apply Math this var max 1 2 3 4 5 6 .max 6   share improve this answer.. 
 JavaScript: min & max Array values? http://stackoverflow.com/questions/1669190/javascript-min-max-array-values  Math.min instead Array.prototype.max function return Math.max.apply null this Array.prototype.min function return Math.min.apply.. 
 Finding the max value of an attribute in an array of objects http://stackoverflow.com/questions/4020796/finding-the-max-value-of-an-attribute-in-an-array-of-objects  Thanks  javascript json   share improve this question   Math.max.apply Math array.map function o return o.y   share improve this answer.. 
 jQuery min/max property from array of elements http://stackoverflow.com/questions/5052673/jquery-min-max-property-from-array-of-elements  get the Max value in Array Array.max function array return Math.max.apply Math array  Function to get the Min value in Array Array.min.. 
 jQuery get max width of child div's http://stackoverflow.com/questions/5784388/jquery-get-max-width-of-child-divs  div div  javascript jquery   share improve this question   Math.max.apply Math '.image' .map function return this .width .get Per suggestion.. 
 |