[Javascript] null, undefined

lilclown·2022년 6월 17일
0

Javascript

목록 보기
23/42
post-thumbnail
post-custom-banner

null, undefined


null

  • 어떤 값이 의도적으로 비어있음을 표현할 때 사용

  • 해당 변수가 어떤 객체도 가리키고 있지 않다는 것을 의미


undefined

  • 선언한 후에 값을 할당하지 않은 변수나 값이 주어지지 않은 인수에 자동으로 할당.

null과 undefined

console.log(typeof null); // 'object'
console.log(typeof undefined); // 'undefined'
console.log(null === undefined); // false
console.log(null == undefined); // true
console.log(!null); // true



Tomorrow better than today, Laugh at myself

- 출처 -

undefined와 null의 차이점을 설명하세요

profile
Tomorrow better than today, Laugh at myself
post-custom-banner

0개의 댓글