JavaScript È°¿ëÆÁ
2022.05.02 / 14:02

ÀÚ¹Ù½ºÅ©¸³Æ® arguments °´Ã¼

ÄÚÄÚ·Î
Ãßõ ¼ö 136

ÀÚ¹Ù½ºÅ©¸³Æ® arguments °´Ã¼ »ç¿ë ¿¹½Ã


<script>

$(document).ready(function() {

function argufunc() {

console.log("0 = " + arguments[0]);

console.log("1 = " + arguments[1]);

alert(" -> " + arguments[0] + " <-> " + arguments[1] + " <- ");

}

argufunc("111", "222"); // ÇÔ¼ö¿¡ ¸Å°³º¯¼ö°¡ ¾ø¾îµµ ¸Å°³º¯¼ö »ç¿ëÀÌ °¡´ÉÇÏ´Ù.

})

</script>



Ãâó: https://devesim.tistory.com/7?category=574248 [µ¥ºê½ÉÀÇ °³¹ßÀÚ ·¹ÆÛ·±½º]