undefined : 값을 직접 표현하기 보단 코드를 실행하면서 '값이 없다'라고 확인할 수 있는 것, 즉 지정된 값이 없을 때 (undefined 단어 자체 의미를 생각해보기)
ex) 값이 주어지지 않은 변수 - 변수를 선언했지만 값을 지정해주지 않아 undefined가 출력
let example
console.log(example);// undefined
cf)
console.log(null==undefined);// true
console.log(null===undefined);// false (null과 undefined는 서로 다른 자료형이기 때문)