초보자 JavaScript - 6 - 연산자

여러분 👋🏻,

이 기사에서는 JavaScript의 연산자에 대해 논의하겠습니다. 이것은 Dev에 대한 초급 JavaScript 시리즈의 여섯 번째 부분입니다.

JavaScript의 연산자





연산자는 무엇입니까?



다른 프로그래밍 언어와 마찬가지로 JavaScript에도 연산자가 있습니다. 연산자는 단일 또는 다중 피연산자(데이터 값)에 대해 일부 작업을 수행하고 결과를 생성합니다. 예를 들어 3 * 2에서 * 기호는 연산자이고 3은 왼쪽 피연산자이고 2는 오른쪽 피연산자입니다. * 연산자는 두 개의 숫자 값을 곱하고 이 경우 6인 결과를 생성합니다.

JavaScript의 연산자 범주


  • 산술 연산자
  • 비교 연산자
  • 논리 연산자
  • 할당 연산자
  • 조건 연산자

  • 산술 연산자



    산술 연산자는 숫자 피연산자 간에 수학 연산을 수행하는 데 사용됩니다.

    +   Adds two numeric operands.
    -   Subtract right operand from left operand
    *   Multiply two numeric operands.
    /   Divide left operand by right operand.
    %   Modulus operator. Returns remainder of two 
            operands.
    ++  Increment operator. Increase operand value by 
            one.
    --  Decrement operator. Decrease value by one.
    



    메모
  • + 연산자는 피연산자 중 하나가 문자열 유형일 때 연결 연산을 수행합니다.


  • 비교 연산자



    비교 연산자는 두 피연산자를 비교하고 부울 값 true 또는 false를 반환하는 연산자입니다.

    ==  Compares the equality of two operands without considering 
            type.
    === Compares equality of two operands with type.
    !=  Compares inequality of two operands.
    >   Checks whether left side value is greater than right side 
            value. If yes then returns true otherwise false.
    <   Checks whether left operand is less than right operand. If 
            yes then returns true otherwise false.
    >=  Checks whether left operand is greater than or equal to 
            right operand. If yes then returns true otherwise false.
    <=  Checks whether left operand is less than or equal to right 
            operand. If yes then returns true otherwise false.
    
    


    논리 연산자



    논리 연산자는 둘 이상의 조건을 결합하는 데 사용됩니다. JavaScript에는 다음과 같은 논리 연산자가 있습니다.

    &&  && is known as AND operator. It checks whether two 
            operands are non-zero (0, false, undefined, null or "" are 
            considered as zero), if yes then returns 1 otherwise 0.
    ||  || is known as OR operator. It checks whether any one of 
            the two operands is non-zero (0, false, undefined, null or 
            "" is considered as zero).
    !   ! is known as NOT operator. It reverses the boolean result 
            of the operand (or condition)
    
    


    할당 연산자



    JavaScript에는 변수에 값을 할당하는 할당 연산자가 있습니다. 그것들을 살펴봅시다.

    =   Assigns right operand value to left operand.
    +=  Sums up left and right operand values and assign the 
            result to the left operand.
    -=  Subtract right operand value from left operand value and 
            assign the result to the left operand.
    *=  Multiply left and right operand values and assign the 
            result to the left operand.
    /=  Divide left operand value by right operand value and 
            assign the result to the left operand.
    %=  Get the modulus of left operand divide by right operand 
            and assign resulted modulus to the left operand.
    
    


    삼항 연산자



    JavaScript에는 삼항 연산자 :?라는 특수 연산자가 포함되어 있습니다. 어떤 조건에 따라 변수에 값을 할당합니다. 이것은 if-else 조건의 약식과 같습니다.

    삼항 연산자는 조건식으로 시작하고 뒤에 ? 운영자. 조건이 true로 판명되면 두 번째 부분( ? 및 이전 : 연산자)이 실행됩니다. 조건이 거짓이면 세 번째 부분(: 이후)이 실행됩니다.

    <some_variable> = <some_condition> ? <some_value_based_on_some_expression> : <some_other_value_based_on_some_expression>;
    



    이에 대한 자세한 내용은 JavaScript의 연산자에 대한 내 비디오를 확인하십시오.



    그래서 이것이 이것에 대한 것입니다.

    웹 개발을 배우려는 경우 YouTube 채널에서 무료 과정을 큐레이팅했습니다. 아래 기사를 확인하십시오.





    2시간 여유? 그렇다면 2시간 이내에 이 10개의 JavaScript 프로젝트를 만들어 활용하십시오.




    👉🏻 트위터에서 저를 팔로우하세요 :

    👉🏻 제 유튜브 채널을 확인해보세요 :

    좋은 웹페이지 즐겨찾기