| javascript Programming Glossary: math.min.applyJavascript collection http://stackoverflow.com/questions/12973706/javascript-collection  Math arr respectively function arrayMin arr return Math.min.apply Math arr Objects With an object you can only do var y or var.. 
 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  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 x 0 posY this.attr.. 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 getWidth r.getHeight.. 
 JavaScript: min & max Array values? http://stackoverflow.com/questions/1669190/javascript-min-max-array-values  null this Array.prototype.min function return Math.min.apply null this Augmenting the built ins can cause collisions with.. just apply 'ing Math.xxx to your array directly var min Math.min.apply null arr max Math.max.apply null arr   share improve this answer.. 
 How can I combine objects in the Raphael javascript library? http://stackoverflow.com/questions/3679436/how-can-i-combine-objects-in-the-raphael-javascript-library  dis.length 1 i j   if dis.length 0 var res 0 4 else res d Math.min.apply Math dis var x1 p res 0 .x y1 p res 0 .y x4 p res 1 .x y4 p.. 
 jQuery min/max property from array of elements http://stackoverflow.com/questions/5052673/jquery-min-max-property-from-array-of-elements  get the Min value in Array Array.min function array return Math.min.apply Math array  updated as per Sime Vidas comment. var widths 'img'.. 
 |