let name = null; //null
let name; // undefined
typeof를 사용하여 인수의 자료형을 확인할 수 있음
typeof(undefined) // "undefined"
typeof(123) // "number"
typeof(10n) // "bigint"
typeof(true) // "boolean"
typeof("123") // "string"
typeof(Symbol("id")) // "symbol"
typeof(Math) // "object"
typeof(null) // "object"
typeof(() => {}) // "function"