중헌 아카이브(Important Archive)
/
중헌 DB
/
Undefined와 Null의 차이
Search
Undefined와 Null의 차이
대분류
언어
소분류
JavaScript
설명
Undefined, Null 차이
유형
최종 편집 일시
2024/10/27 16:27
생성 일시
2023/10/28 10:04
14 more properties
undefined : , null
undefined : , null
undefined
Plain Text
복사
은 변수를 선언하고 값을 할당하지 않은 상태,
null
Plain Text
복사
은 변수를 선언하고 빈 값을 할당한 상태(빈 객체)이다. 즉,
undefined
는 자료형이 없는 상태이다.
따라서 typeof를 통해 자료형을 확인해보면
null
= object
undefined
= undefined
가 출력되는 것을 확인할 수 있다.