¼ö½ÄÀ» ´õÇϰųª ¹®ÀÚ¿À» ¿¬°áÇÑ´Ù.
result=expression1+expression2
expression1°ú expression2°¡ ´õÇϰųª °áÇÕÇÏ¿© result º¯¼ö¿¡ ÇÒ´çµÈ´Ù.
½ÄÀÇ ±âº» ÇÏÀ§ Çü½Ä¿¡ µû¶ó + ¿¬»êÀÚÀÇ µ¿ÀÛÀº ¾Æ·¡¿Í °°ÀÌ µÎ°¡Áö·Î °áÁ¤µÈ´Ù.
numb=10;str='20' | |||
°æ¿ì | µ¿ÀÛ | ¿¹Á¦ ÄÚµå | °á°ú |
---|---|---|---|
¸ðµÎ ¼ö½ÄÀ̰ųª ºÎ¿ï½ÄÀÎ °æ¿ì | ¼öÄ¡ÀÇ µ¡¼À | 100+10 | 110 |
true+true+false+numb | 12 | ||
isNaN('x')+10 | |||
¸ðµÎ ¹®ÀÚ½ÄÀÎ °æ¿ì | ¹®ÀÚ¿ÀÇ °áÇÕ(¿¬°á) | '¹®ÀÚ¿'+'ÀÇ '+'°áÇÕ' | '¹®ÀÚ¿ÀÇ °áÇÕ' |
str+'¿ø' | '10¿ø' | ||
¼ö½Ä°ú ¹®ÀÚ°¡ È¥ÇÕµÈ °æ¿ì | ¹®ÀÚ¿ÀÇ °áÇÕ(¿¬°á) | 100+10+'¿ø' | '10010¿ø' |
isNaN('y')+'10' | '' | ||
str+numb | '2010' |
¼öÄ¡Áß¿¡ Çϳª¶óµµ À¯È¿¼öÄ¡°¡ ¾Æ´Ï¸é ¼öÄ¡µµ ¹®ÀÚ¿·Î Ãë±ÞÇÏ¿© ¹®ÀÚ¿ °áÇÕÀÌ ÀÌ·ç¾îÁø´Ù.
ºÎ¿ï°ªÀº trueÀ̸é 1·Î, false À̸é 0À¸·Î 󸮵ǰí, nullÀº ¼öÄ¡·Î´Â 0À¸·Î 󸮵ȴÙ.
<SCRIPT> var numb=100+20; document.write(numb); // µ¡¼ÀÀÌ µÊ document.write('<BR>'); // ÁÙ ¹Ù²Þ var str='¹®ÀÚ¿ÀÇ '+'°áÇÕ'; document.write(str); // ¹®ÀÚ¿ÀÇ °áÇÕÀÌ µÊ document.write('<BR>'); var combi=100+' ¼öÄ¡¿Í ¹®ÀÚ¿ÀÇ °áÇÕ'; document.write(combi); // ¹®ÀÚ¿ÀÇ °áÇÕÀÌ µÊ document.write('<BR>'); document.write(numb+str+combi); // ¹®ÀÚ¿ÀÇ °áÇÕÀÌ µÊ document.write('<BR>'); document.write(isNaN(numb)+isNaN(str)); // ºÎ¿ï ¹Ýȯ°ª true+false=1+0=1 document.write('<BR>'); </SCRIPT>