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 창에서 출력