다음 변수 a를 typeof(a)로 넣었을 때 출력될 값과의 연결이 알맞지 않은 것은?
typeof(a)
입력 : a =1, 출력 : number
입력 : a = 2.22, 출력 : boolean
입력 : a = 'p', 출력 : string
입력 : a = [1, 2, 3], 출력 : object