문제 : console.log(typeof typeof 1);
A: "number"
B: "string"
C: "object"
D: "undefined"
답을 맞히시면, 문제를 내신 회원님이 채택을 해드립니다. 채택은 '좋아요'와 같습니다.
댓글 6개
그렇게 보니 그렇게 보이네요.
typeof 1 >>> number
typeof typeof 1 >> string
typeof 1 은 "number"를 return하고
typeof "number"은 문자열을 Return