Skip to content
On this page

형 변환(Type conversion)

Title
형 변환(Type conversion)
Category
JavaScript
Tags
Aliases
형 변환(Type conversion)형 변환Type conversion암묵적 형 변환(Type coercion)
Related
Created
2 years ago
Updated
last year

형 변환이 발생하는 상황

  • 문자형으로 변환 : 무언가를 출력할 때 주로 일어난다.

    • console.log
    • $element.innerText
  • 숫자형으로 변환 : 수학 관련 연산시 주로 일어난다.

  • 불린형으로 변환 : 논리 연산 시 발생한다.

    전달받은 값형 변환 후
    Falsyfalse
    그 외true

References

Released under the MIT License.