변수에는 다양한 타입이 존재한다
=> 숫자(number), 문자열(string), 불리언(boolean), undefined, 함수, 배열, 객체
typeof
연산자 사용법typeof 값;
typeof
연산자 다음에 확인하고자 하는 값을 넣어주면 된다.
console.log(typeof 1);
// number
console.log(typeof '1');
// string
console.log(typeof (1 < 2));
// boolean
변수에 할당한 값도 typeof
연산자를 이용해 타입을 확인할 수 있다.
let a = 1;
console.log(typeof a);
// number
let b = '1';
console.log(typeof b);
// string
let c = (1 < 2);
console.log(typeof c);
// boolean