typeof(null) >'object' typeof(undefined) >'undefined' undefined 변수 생성하면 처음에 undefined로 설정돼 있음 값을 할당하지 않은 상태 자료형이 없는 상태 값이 없음 null 변수를 선언하고 빈 값을 할당한 상태 값이 있고, 그 값이 null임 let loggedInUser = null; // value is explicitly nothing loggedInUser = 'Kelly';