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
- 출처 -