어느 개발자의 한적한 공간 살아나가면서 저지른 이야기

typescript에서 null 체크의 기본

if ( value ) {
}

typescript에서 위와 같이 value를 조건문으로 사용한다는 것은 value

  • null
  • undefined
  • NaN
  • empty string (“”)
  • 0
  • false

에 모두 해당하지 않는다는 뜻이다.

Referencing

StackOverflow. (2015). “Is there a standard function to check for null, undefined, or blank variables in JavaScript?”, [online] Available at: https://stackoverflow.com/questions/5515310/is-there-a-standard-function-to-check-for-null-undefined-or-blank-variables-in [Accessed June 21, 2017].

프론트엔드 #typescript #validation