typeof 연산자는 피연산자의 평가 전 자료형을 나타내는 문자열을 반환합니다.
(출처: developer.mozilla.org)
이 연산자를 알기 전에 type에 관한 이해가 필요하다고 생각한다. 너무 깊게 파면 초반부터 과부하가 걸릴 수 있으니 강의상에 나온 개념부터 이해하도록 하자.
true
, false
두 가지의 값을 가진다.아직은 배우지 않은 단계이고, 설명 페이지를 봐도 뭔소린지 모르겠으니 우선 패스.
console.log(typeof 1); //number
console.log(typeof '1'); //string
console.log(typeof '1<2'); //boolean
console.log(typeof true); //boolean
console.log(typeof whatIsMyName) //undefined
console.log(typeof typeof(1)); //string