undefined null 차이 (1) 썸네일형 리스트형 자바스크립트_undefined와 null null과 undefined간의 비교를 정리해보자. null : 의도적으로 아무 값이 없음을 표시해 주는 것 undefined : 아무런 조치를 취하지 않은 그 상태, 디폴트 값이라고 보면 된다. 두 값의 비교 관계를 살펴보면, null과 undefined는 서로 동등하지만, 일치하진 않다. console.log(null == undefined) // true console.log(null === undefined) // false 이전 1 다음