Skip to content

Latest commit

 

History

History
426 lines (327 loc) · 14.2 KB

09_타입변환과-단축평가.md

File metadata and controls

426 lines (327 loc) · 14.2 KB

09. 타입 변환과 단축 평가

📌 9.1 타입 변환이란?

자바스크립트의 모든 값은 타입이 있다.

  • 명시적 타입 변환 (타입캐스팅)
    개발자의 의도에 따라 값의 타입을 변환하는 것을 말한다.

    var x = 10;
    
    // 명시적 타입 변환
    // 숫자를 문자열로 타입 캐스팅한다.
    var str = x.toString();
    console.log(typeof str, str); // string 10
    
    // x 변수의 값이 변경된 것은 아니다.
    console.log(typeof x, x) // number 10
  • 암묵적 타입 변환 (타입 강제 변환)
    개발자의 의도와는 상관없이 표현식을 평가하는 도중에 자바스크립트 엔진에 의해 타입이 변환되는 것을 말한다.

    var x = 10;
    
    // 암묵적 타입 변환
    // 문자열 연결 연산자는 숫자 타입 x의 값을 바탕으로 새로운 문자열을 생성한다.
    var str = x + '';
    console.log(typeof str, str); // string 10
    
    // x 변수의 값이 변경된 것은 아니다.
    console.log(typeof x, x) // number 10
  • 명시적 타입 변환이나 암묵적 타입 변환 모두 기존 원시 값을 사용해 다른 타입의 새로운 원시 값을 생성한다. 따라서 기존 원시 값은 변경되지 않는다.

  • 명시적 타입 변환의 경우 타입을 변경하겠다는 개발자의 의지가 코드에 명백히 드러나지만 암묵적 타입 변환은 그렇지 않다. 타입 변환 결과를 예측하지 못할 경우 오류를 생산할 가능성이 높아진다. 때로는 가독성 측면에서 암묵적 타입 변환이 더 좋을 수도 있기 때문에 타입 변환이 어떻게 동작하는지 정확히 이해하고 사용하는 것이 중요하다.

📌 9.2 암묵적 타입 변환

자바스크립트 엔진은 표현식을 평가할 때 가급적 에러를 발생시키지 않도록 데이터 타입을 강제변환할 때가 있다. 암묵적 타입 변환이 발생하면 문자열, 숫자, 불리언과 같은 원시 타입 중 하나로 타입을 자동 변환한다.

  • 문자열 타입으로 변환

    문자열 연결 연산자의 피연산자 중에서 문자열 타입이 아닌 피연산자를 문자열 타입으로 암묵적 타입 변환한다.

    1 + "2"; // "12"

    연산자 식의 피연산자 만이 암묵적 타입 변환의 대상이 되는 것은 아니다.
    예를 들어 ES6에서 도입된 템플릿 리터럴의 표현식 삽입은 표현식의 평가 결과를 문자열 타입으로 암묵적 타입 변환한다.

    `1 + 1 = ${1 + 1}`; // "1 + 1 = 2"

    문자열 타입이 아닌 값을 문자열 타입으로 암묵적 타입 변환을 수행할 때 다음과 같이 동작한다.

    // 숫자 타입
    0 + ''              // "0"
    -0 + ''             // "0"
    1 + ''              // "1"
    -1 + ''             // "-1"
    NaN + ''            // "NaN"
    Infinity + ''       // "Infinity"
    -Infinity + ''      // "-Infinity"
    
    // 불리언 타입
    true + ''           // "true"
    false + ''          // "false"
    
    // null 타입
    null + ''           // "null"
    
    // undefined 타입
    undefined + ''      // "undefined"
    
    // 심볼 타입
    (Symbol()) + ''     // TypeError: Cannot convert a Symbol value to a string
    
    //   객체 타입
    ({}) + ''           // "[object Object]"
    Math + ''           // "[object Math]"
    [] + ''             // ""
    [10, 20] + ''       // "10,20"
    (function(){}) + '' // "function(){}"
    Array + ''          // "function Array(){ [native code] }"
  • 숫자 타입으로 변환

    산술 연산자의 피연산자 중에서 숫자 타입이 아닌 피연산자를 숫자 타입으로 암묵적 타입 변환한다. 이때 숫자 타입으로 변환할 수 없는 경우, 표현식의 평가 결과는 NaN이 된다.

    1 - "1"; // 0
    1 * "10"; // 10
    1 / "one"; // NaN

    비교 연산자 표현식을 평가할 때도 암묵적 타입 변환이 발생한다.

    "1" > 0; // true

    숫자 타입이 아닌 값을 숫자 타입으로 암묵적 타입 변환을 수행할 때 다음과 같이 동작한다.

    // 문자열 타입
    +"" // 0
    +"0" // 0
    +"1" // 1
    +"string" // NaN
      
    // 불리언 타입
    +true // 1
    +false // 0
      
      
    // null 타입
    +null // 0
      
    // undefined 타입
    +undefined // NaN
      
    // 심볼 타입
    +Symbol() // TypeError: Cannot convert a Symbol value to a number
      
    // 객체 타입
    +{} // NaN
    +[] // 0
    +[10, 20] // NaN
    +(function () {}) // NaN
  • 불리언 타입으로 변환

    조건식의 평가 결과를 불리언 타입으로 암묵적 타입 변환한다.

    if ("") console.log("1");
    if (true) console.log("2");
    if (0) console.log("3");
    if ("str") console.log("4");
    if (null) console.log("5");
    
    // 2 4

    이때 불리언 타입이 아닌 값을 Truthy 값(참으로 평가되는 값) 또는 Falsy 값(거짓으로 평가되는 값)으로 구분한다. 즉, Truthy 값은 true로 Falsy값은 false로 암묵적 타입 변환된다.

    • Falsy 값
      false, undefined, null, 0, -0, NaN, ''(빈문자열)

      // 아래의 조건문은 모두 코드 블록을 실행한다.
      
      if (!false) console.log(false + " is falsy value");
      if (!undefined) console.log(undefined + " is falsy value");
      if (!null) console.log(null + " is falsy value");
      if (!0) console.log(0 + " is falsy value");
      if (!NaN) console.log(NaN + " is falsy value");
      if (!"") console.log("" + " is falsy value");
    • Falsy 값 이외의 모든 값은 Truthy 값이다.

    • Truthy/Falsy 값을 판별하는 함수를 만들 수 있다.

      // 주어진 인자가 Falsy 값이면 true, Truthy 값이면 false를 반환한다.
      function isFalsy(v) {
        return !v;
      }
      
      // 주어진 인자가 Truthy 값이면 true, Falsy 값이면 false를 반환한다.
      function isTruthy(v) {
        return !!v;
      }
      
      // 모두 true를 반환한다.
      console.log(isFalsy(false));
      console.log(isFalsy(undefined));
      console.log(isFalsy(null));
      console.log(isFalsy(0));
      console.log(isFalsy(NaN));
      console.log(isFalsy(""));
      
      console.log(isTruthy(true));
      // 빈 문자열이 아닌 문자열은 Truthy 값이다.
      console.log(isTruthy("0"));
      console.log(isTruthy({}));
      console.log(isTruthy([]));

📌 9.3 명시적 타입 변환

개발자의 의도에 따라 명시적으로 타입을 변경하는 방법에는 표준 빌트인 생성자 함수를 new 연산자 없이 호출하는 방법, 빌트인 메서드를 사용하는 방법, 암묵적 타입 변환을 이용하는 방법이 있다.

  • 문자열 타입으로 변환

    1. String 생성자 함수를 new 연산자 없이 호출하는 방법

      // 숫자 타입 => 문자열 타입
      console.log(String(1)); // "1"
      console.log(String(NaN)); // "NaN"
      console.log(String(Infinity)); // "Infinity"
      
      // 불리언 타입 => 문자열 타입
      console.log(String(true)); // "true"
      console.log(String(false)); // "false"
    2. Object.prototype.toString 메소드를 사용하는 방법

      // 숫자 타입 => 문자열 타입
      console.log((1).toString()); // "1"
      console.log(NaN.toString()); // "NaN"
      console.log(Infinity.toString()); // "Infinity"
      // 불리언 타입 => 문자열 타입
      console.log(true.toString()); // "true"
      console.log(false.toString()); // "false"
    3. 문자열 연결 연산자를 이용하는 방법

      // 숫자 타입 => 문자열 타입
      console.log(1 + ""); // "1"
      console.log(NaN + ""); // "NaN"
      console.log(Infinity + ""); // "Infinity"
      // 불리언 타입 => 문자열 타입
      console.log(true + ""); // "true"
      console.log(false + ""); // "false"
  • 숫자 타입으로 변환

    1. Number 생성자 함수를 new 연산자 없이 호출하는 방법

      // 문자열 타입 => 숫자 타입
      console.log(Number("0")); // 0
      console.log(Number("-1")); // -1
      console.log(Number("10.53")); // 10.53
      // 불리언 타입 => 숫자 타입
      console.log(Number(true)); // 1
      console.log(Number(false)); // 0
    2. parseInt, parseFloat 함수를 사용하는 방법(문자열만 변환 가능)

      // 문자열 타입 => 숫자 타입
      console.log(parseInt("0")); // 0
      console.log(parseInt("-1")); // -1
      console.log(parseFloat("10.53")); // 10.53
    3. '+' 단항 연결 연산자를 이용하는 방법

      // 문자열 타입 => 숫자 타입
      console.log(+"0"); // 0
      console.log(+"-1"); // -1
      console.log(+"10.53"); // 10.53
      // 불리언 타입 => 숫자 타입
      console.log(+true); // 1
      console.log(+false); // 0
    4. '*' 산술 연산자를 이용하는 방법

      // 문자열 타입 => 숫자 타입
      console.log("0" * 1); // 0
      console.log("-1" * 1); // -1
      console.log("10.53" * 1); // 10.53
      // 불리언 타입 => 숫자 타입
      console.log(true * 1); // 1
      console.log(false * 1); // 0
  • 불리언 타입으로 변환

    1. Boolean 생성자 함수를 new 연산자 없이 호출하는 방법

      // 문자열 타입 => 불리언 타입
      console.log(Boolean("x")); // true
      console.log(Boolean("")); // false
      console.log(Boolean("false")); // true
      
      // 숫자 타입 => 불리언 타입
      console.log(Boolean(0)); // false
      console.log(Boolean(1)); // true
      console.log(Boolean(NaN)); // false
      console.log(Boolean(Infinity)); // true
      
      // null 타입 => 불리언 타입
      console.log(Boolean(null)); // false
      
      // undefined 타입 => 불리언 타입
      console.log(Boolean(undefined)); // false
      
      // 객체 타입 => 불리언 타입
      console.log(Boolean({})); // true
      console.log(Boolean([])); // true
    2. ! 부정 논리 연산자를 두번 사용하는 방법

      // 문자열 타입 => 불리언 타입
      console.log(!!"x"); // true
      console.log(!!""); // false
      console.log(!!"false"); // true
      
      // 숫자 타입 => 불리언 타입
      console.log(!!0); // false
      console.log(!!1); // true
      console.log(!!NaN); // false
      console.log(!!Infinity); // true
      
      // null 타입 => 불리언 타입
      console.log(!!null); // false
      
      // undefined 타입 => 불리언 타입
      console.log(!!undefined); // false
      
      // 객체 타입 => 불리언 타입
      console.log(!!{}); // true
      console.log(!![]); // true

📌 9.4 단축 평가

  • 논리 연산자를 사용한 단축 평가

    • 논리합(||) 또는 논리곱(&&) 연산자 표현식의 평가결과는 불리언 값이 아닐 수도 있다. 논리합(||) 또는 논리곱(&&) 연산자 표현식은 언제나 2개의 피연산자 중 어느 한쪽으로 평가된다.

    • 논리 연산의 결과를 결정하는 피연산자를 타입 변환 없이 그대로 반환한다. 이를 단축 평가라 한다.

      단축 평가 표현식 평가 결과
      true || anything true
      false || anything anything
      true && anything anything
      false && anything false
      // 논리합(||) 연산자
      "Cat" || "Dog"; // 'Cat' -> 'Cat'이 Truthy 값으로 연산의 결과 결정
      false || "Dog"; // 'Dog'
      "Cat" || false; // 'Cat'
      
      // 논리곱(&&) 연산자
      "Cat" && "Dog"; // Dog -> 'Dog'가 연산의 결과 결정
      false && "Dog"; // false
      "Cat" && false; // false
    • 단축 평가를 사용하면 if문을 대체할 수 있다.

      • 조건이 Truthy일 때

        var done = true;
        var message = "";
        // 주어진 조건이 true일 때
        if (done) message = "완료";
        // if 문은 단축 평가로 대체 가능하다.
        // done이 true라면 message에 '완료'를 할당
        message = done && "완료";
        console.log(message); // 완료
      • 조건이 Falsy일 때

        var done = false;
        var message = "";
        // 주어진 조건이 false일 때
        if (!done) message = "미완료";
        // if 문은 단축 평가로 대체 가능하다.
        // done이 false라면 message에 '미완료'를 할당
        message = done || "미완료";
        console.log(message); // 미완료
  • 옵셔널 체이닝 연산자

    옵셔널 체이닝 연산자 ?.는 좌항의 피연산자가 null 또는 undefined인 경우 undefined를 반환하고, 그렇지 않으면 우항의 프로퍼티 참조를 이어간다.

    var elem = null;
    // elem이 null 또는 undefined이면 undefined를 반환하고, 그렇지 않으면 우항의 프로퍼티 참조를 이어간다.
    var value = elem?.value;
    console.log(value); // undefined

    옵셔널 체이닝 연산자 ?.는 좌항 피연산자가 Falsy 값이라도 null 또는 undefined가 아니면 우항의 프로퍼티 참조를 이어간다.

    var str = "";
    // 문자열의 길이(length)를 참조한다. 이때 좌항 피연산자가 false로 평가되는 Falsy 값이라도
    // null 또는 undefined가 아니면 우항의 프로퍼티 참조를 이어간다.
    var length = str?.length;
    console.log(length); // 0
  • null 병합 연산자

    null 병합 연산자 ??는 좌항의 피연산자가 null 또는 undefined인 경우 우항의 피연산자를 반환하고, 그렇지 않으면 좌항의 피연산자를 반환한다.

    // 좌항의 피연산자가 null 또는 undefined이면 우항의 피연산자를 반환하고, 그렇지 않으면 좌항의 피연산자를 반환한다.
    var foo = null ?? "default string";
    console.log(foo); // "default string"

    null 병합 연산자 ??는 좌항의 피연산자가 Falsy 값이라도 null 또는 undefined가 아니면 좌항의 피연산자를 그대로 반환하기 때문에 변수에 기본값을 설정할 때 유용하다.

    // 좌항의 피연산자가 Falsy 값이라도 null 또는 undefined가 아니면 좌항의 피연산자를 반환한다.
    var foo = "" ?? "default string";
    console.log(foo); // ""