ÁÖ¾îÁø ¼ö½Ä Áß °¡Àå Å« °ªÀ» ¹ÝȯÇÑ´Ù.

Àμö/ÆĶó¸ÞÅÍ
object : (°³Ã¼)
ÇʼöÀûÀÎ ¿ä¼ÒÀ̸ç, Math °³Ã¼ÀÌ´Ù.
number1,number2,...,numberN : (¼öÄ¡)

¼±ÅÃÀûÀÎ number1,number2,...,numberN Àμö´Â Æò°¡ÇÒ ¼ö½ÄÀÌ´Ù. ÇÊ¿äÇÑ ¼öÄ¡, ¼öÄ¡°³Ã¼³ª ¼ö½ÄÀÌ µÉ ¼ö ÀÖ´Ù.

¹Ýȯ°ª

¹Ýȯ°ª vNumbÀº ÁÖ¾îÁø ¼ö½Ä Áß °¡Àå Å« °ªÀÌ´Ù.

¼³¸í

Àμö´Â ¼öÄ¡°³Ã¼³ª ¼ö½ÄÀÌ µÉ ¼ö ÀÖ°í, Á¦°øµÈ Àμö Áß¿¡ °¡Àå Å« °ªÀ» ¹ÝȯÇÑ´Ù.

¾Æ¹« Àμöµµ ÁÖ¾îÁöÁö ¾ÊÀ¸¸é NEGATIVE_INFINITY¿Í °°Àº °ª -Infinity¸¦ ¹ÝȯÇÑ´Ù.
Àμö Áß ÇϳªÀÇ °ªÀÌ NaNÀÌ¸é ¹Ýȯ°ªµµ NaNÀÌ´Ù.
Àμö Áß ÇϳªÀÇ °ªÀÌ InfinityÀÌ¸é ¹Ýȯ°ªµµ InfinityÀÌ´Ù.

±¸¹® ¿¹Á¦
Math.max(5/3,6/4.5,1,-1);


°£´ÜÇÑ max ¸Þ¼­µå ¿¹Á¦

<SCRIPT>
document.write(Math.max(20,30,40,-20)+'<BR>');
document.write(Math.max(-10,-30,-40,-20)+'<BR>');
document.write(Math.max(5,10,2,"2¿ø",8)+'<BR>'); // "2¿ø"Àº ¼öÄ¡°¡ ¾Æ´Ï¹Ç·Î ¹Ýȯ°ªÀº NaN
document.write(Math.max(5,10,2,Math.pow(200,200),8)+'<BR>');
  // Math.pow(200,200)=(200200)ÀÇ °ªÀº InfinityÀ̹ǷΠ¹Ýȯ°ªÀº Infinity
document.write(Math.max()+'<BR>'); // Àμö°¡ Á¦°øµÇÁö ¾Ê¾Æ ¹Ýȯ°ªÀº -Infinity
</SCRIPT>