typeof 값;
console.log(typeof 1)
console.log(typeof 'hello')
console.log(typeof (0 !== 1)
let hi = 123; // 변수 선언과 할당
console.log(typeof hi) // console 창에서 출력
let hello = '123'; // 변수 선언과 할당
console.log(typeof hello) // console 창에서 출력
위 식의 결과로 알맞는 타입의 결과가 나왔다!