본문 바로가기

Webstoryboy

Category

Explanation

JAVASCRIPT

[Javascript] 비교 연산자

비교 연산자

비교 연산자는 비교 할 때 사용하며, 결과 값은 true(참) 또는 false(거짓)로 반환합니다.

비교 연산자

연산자 예시 설명
== x == y 좌변과 우변이 같다
=== x === y 좌변과 우변이 같다. 데이터형도 같다.
!= x != y 좌변과 우변이 다르다.
!== x !== y 좌변과 우변이 다르다. 데이형도 다르다.
> x > y 좌변이 우변보다 크다.
< x < y 좌변이 우변보다 작다.
>= x >= y 좌변이 우변보다 크거나 같다.
<= x <= y 좌변이 우변보다 작거나 같다.

Sample1

비교 연산자를 이용한 예제입니다.

결과
false
true
true
false
false
false
false
true
false
true
html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>비교 연산자</title>
    <script>
        var x = 10;
        var y = 20;     //숫자
        var a = 10;
        var b = "20";   //문자열

        document.write(x == y);    
        document.write("<br>");
        document.write(x == a);    
        document.write("<br>");
        document.write(y == b);     
        document.write("<br>");
        document.write(y === b);    
        document.write("<br>");
        document.write(x != a);     
        document.write("<br>");
        document.write(x !== a);    
        document.write("<br>");
        document.write(x > y);       
        document.write("<br>");
        document.write(x < y);       
        document.write("<br>");
        document.write(x >= y);     
        document.write("<br>");
        document.write(x <= y);     
        document.write("<br>");
    </script>
</head>
<body>
    
</body>
</html>

더보기

인스타그램 보기 바로가기

포트폴리오 스터디 바로가기

유튜브 영상보기 바로가기