typeof + 값 을 통해 값의 데이터 타입을 확인할 수 있다.
console.log(typeof 245); // number
console.log(typeof '245'); // string
console.log(typeof 24>5); // true
console.log(typeof 안녕하쇼); // undefined
변수를 새롭게 할당하고 데이터타입을 조회할 수도 있다.
let num='24';
console.log(typeof num); // string
let string=1212;
console.log(typeof string); // num