특정 값의 타입을 모를 때 typeof 연산자를 사용해서 타입 확인 가능
typeof 연산자 다음에 값을 넣어줌
console.log(typeof 값)
console.log(typeof 1) // number
console.log(typeof '1') // srting
console.log(typeof (1 < 2)) // boolean
let number = 1;
console.log(typeof number)
let string = '1';
console.log(typeof string)