¼Ò¼öÁ¡ ó¸® °øÅë ¿¹Á¦
ceil, floor, round ¿¹Á¦
<SCRIPT>
var br='<BR>'; // ÁٹٲÞ
str='<OL>'; // Ãâ·Â º¯¼ö ¼±¾ð
for (i=1;i<10;i++){  // 1¿¡¼­ 9±îÁö 1¾¿ ¿Ã¸®´Â ·çÇÁ
  str+='Math.ceil('+i+'/3)='+Math.ceil(i/3)+', '; // ceil ¼Ò¼öÁ¡ ¹«Á¶°Ç ¿Ã¸² Ãâ·Â
  str+='Math.floor('+i+'/3)='+Math.floor(i/3)+', '; // floor ¼Ò¼öÁ¡ ¹«Á¶°Ç ³»¸² Ãâ·Â
  str+='Math.round('+i+'/3)='+Math.round(i/3)+', '; // round ¼Ò¼öÁ¡ ¹Ý¿Ã¸² Ãâ·Â
  str+='('+i+'%3)='+(i%3)+br; // %(³ª¸ÓÁö) ¿¬»êÀÚ·Î ³ª¸ÓÁö »êÃâ
}
str+='Math.ceil("1,000"/25)='+Math.ceil("1,000"/25)+br; // 1,000Àº ¼öÄ¡°¡ ¾Æ´Ï¹Ç·Î NaN Ãâ·Â
document.write(str); // °á°ú ¹®ÀÚ¿­ Ãâ·Â
</SCRIPT>