¿¬»êÀÚ | ÀÛ¿ë±â´É | ¿¹Á¦/¼³¸í |
---|---|---|
! | ³í¸® ºÎÁ¤ : not Á¶°Ç¿¡ ¸ÂÁö ¾ÊÀ¸¸é true |
a='';b=5;document.write(!a);document.write(!b);
a´Â °ªÀÌ ¾øÀ¸¹Ç·Î true, b´Â °ªÀÌ 51À̹ǷΠfalse |
< | º¸´Ù ÀÛÀ½ : ÁÂÇ×ÀÌ ¿ìÇ׺¸´Ù ÀÛÀ¸¸é true |
a=0;b=5;document.write(a<b);
a°¡ bº¸´Ù ÀÛÀ¸¹Ç·Î true |
> | º¸´Ù Å : ÁÂÇ×ÀÌ ¿ìÇ׺¸´Ù Å©¸é true |
a=0;b=5;document.write(a>b);
a°¡ bº¸´Ù Å©±â ¾ÊÀ¸¹Ç·Î false
|
<= | À۰ųª °°À½ : ÁÂÇ×ÀÌ ¿ìÇ׺¸´Ù À۰ųª °°À¸¸é true |
a=0;b=5;document.write(a<=b);
a°¡ bº¸´Ù À۰ųª °°À¸¹Ç·Î true |
>= | Å©°Å³ª °°À½ : ÁÂÇ×ÀÌ ¿ìÇ׺¸´Ù Å©°Å³ª °°À¸¸é true |
a=0;b=5;document.write(a>=b);
a°¡ bº¸´Ù Å©°Å³ª °°Áö ¾ÊÀ¸¹Ç·Î false
|
== | °°À½ : µÎ °ªÀÌ °°¾Æ¾ß true |
a=0;b=5;document.write(a==b);
a°¡ b¿Í °°Áö ¾ÊÀ¸¹Ç·Î false |
!= | °°Áö ¾ÊÀ½ : µÎ °ªÀÌ °°Áö ¾ÊÀ¸¸é true |
a=0;b=5;document.write(a!=b);
a°¡ b¿Í °°Áö ¾ÊÀ¸¹Ç·Î true |
&& | ³í¸®°ö : and µÎ Á¶°Ç¹®ÀÌ ´Ù ¸ÂÀ¸¸é °ªÀÌ 'true' |
if (day=='friday'&&date==13) alert('Á¶½ÉÇϼ¼¿ä')
±Ý¿äÀÏ(¸®ÅÏ°ª true)À̸ç 13ÀÏÀ̸é(¸®ÅÏ°ª true) ¼öÇ๮ ¼öÇà(°æ°í Ãâ·Â) |
|| | ³í¸®ÇÕ : or µÎ Á¶°ÇÁß¿¡ ÇÑ Á¶°Ç¸¸ÀÌ¶óµµ 'true'À̸é 'true' |
if (day=='friday'||date==13) alert('Á¶½ÉÇϼ¼¿ä')
±Ý¿äÀÏ(true) À̰ųª, 13ÀÏ(true)À̰ųª, 13ÀÏÀÌ¸ç ±Ý¿äÀÏ(¸ðµÎ true)ÀÌ¸é °æ°í Ãâ·Â |
?... :... | Á¶°ÇºÎ(»ïÇ×) : if... else... ÀÇ ´ÜÃà ¹®Àå |
a=0;b=5;document.write((a>=b) ? 'a>=b' : 'a<b');
a°¡ bº¸´Ù Å©°Å³ª °°Áö ¾ÊÀ¸¹Ç·Î 'a<b' Ãâ·Â |
, | Äĸ¶ : ¹®ÀåÀÇ ¼øÂ÷Àû ÁøÇàÀ» ÁöÁ¤ |
a=0;b=5;document.write(a,b);
¾Õ¿¡¼ ¼øÂ÷ÀûÀ¸·Î a¸¦ Ãâ·ÂÇÏ°í b¸¦ Ãâ·ÂÇÑ´Ù.(0 5) |
=== | µ¿Ä¡ : °ª°ú Çü½ÄÀÌ µ¿ÀÏÇÑ°¡ Á¡°Ë |
a=1;b='1';document.write(a===b);
°ªÀº °°À¸³ª Çü½ÄÀÌ ´Ù¸£¹Ç·Î false |
!== | µ¿Ä¡°¡ ¾Æ´Ô : °ªÀ̳ª Çü½ÄÀÌ ´Ù¸¥°¡ Á¡°Ë |
a=1;b='1';document.write(a!==b);
°ªÀº °°À¸³ª Çü½ÄÀÌ ´Ù¸£¹Ç·Î true |