µÎ ½Ä¿¡ ³í¸®ÇÕÀ» ¼öÇàÇÑ´Ù.

 result=expression1||expression2
Àμö
result : (°á°ú°ª º¯¼ö)
°á°ú°ªÀ» ÇÒ´çÇÒ ÀÓÀÇÀÇ º¯¼ö À̸§ÀÌ´Ù.
expression1, expression1 (Ç¥Çö½Ä1, 2)
°ø½Ä, º¯¼ö, ¼öÄ¡, µîÀ» Æ÷ÇÔÇÏ´Â ÀÓÀÇÀÇ ¼ö½ÄÀÌ´Ù.

µÎ ½Ä Áß Çϳª ÀÌ»óÀÌ trueÀÌ¸é °á°ú°ªÀº trueÀÌ´Ù.

¾Æ·¡ Ç¥´Â °á°ú°ª È®ÀÎ ¹æ¹ýÀ» º¸¿©ÁØ´Ù.

Ç¥Çö½Ä1ÀÇ °ªÇ¥Çö½Ä2ÀÇ °ª°á°úº¯¼öÀÇ °ª
truetruetrue
truefalsetrue
falsetruetrue
falsefalsefalse

¾Æ·¡ ±ÔÄ¢À» »ç¿ëÇÏ¿© ºÎ¿ï°ªÀÌ ¾Æ´Ñ °ªÀ» ºÎ¿ï°ªÀ¸·Î º¯È¯ÇÑ´Ù.



°£´ÜÇÑ || ¿¬»êÀÚ ¿¹Á¦

<SCRIPT>
var a=5, b=3, c=7; // º¯¼ö°ª ÇÒ´ç
document.write('a='+a+', b='+b+', c='+c+'<BR>'); // º¯¼ö°ª Ãâ·Â
document.write('((b==3)||(c==5))=['+((b==3)||(c==5))+']<BR>'); // ³í¸®ÇÕ °ªÀ» Ãâ·Â
document.write('((b==1)||(c==5))=['+((b==2)||(c==5))+']<BR>'); // ³í¸®ÇÕ °ªÀ» Ãâ·Â
document.write('((a==1)||(b==5)||(c==7))=['+((a==1)||(b==5)||(c==7))+']<BR>'); // ³í¸®ÇÕ °ªÀ» Ãâ·Â
</SCRIPT>

·çÇÁ¿¡¼­ ³í¸®ÇÕ »êÃâ ¿¹Á¦

<SCRIPT>
for (i=0;i<8;i++) { // 0¿¡¼­ 7±îÁö 1¾¿ Áõ°¡ÇÏ´Â ·çÇÁ.
  document.write(i+') ((i==3)||(i==5))=['+((i==3)||(i==5))+'] '); // i°ªÀÌ 3°ú °°°Å³ª 5¿Í °°Àº°¡¸¦ Á¡°ËÇÏ¿© ³í¸®ÇÕ °ªÀ» Ãâ·Â
  if ((i==3)||(i==5)) document.write('(i´Â 3°ú °°°Å³ª 5¿Í °°À½)'); // °ªÀÌ true À̸é Ãß°¡ ¼³¸í Ãâ·Â
  document.write('<BR>'); // ÁٹٲÞ
}
</SCRIPT>