프론트엔드-코드/Javascript

typeof

sdafdq 2023. 9. 15. 13:41

typeof는 원시타입을 검사하는 거임.

 

console.log(typeof 15);
console.log(typeof NaN);
console.log(typeof 'hello');
console.log(typeof null);
console.log(typeof undefined);

참고로 NaN도 원시타입 상에서는 number임.

 

hello는 string이고,

 

null은 오브젝트임.

 

undefind는 undefined임.

 

 

 

'프론트엔드-코드 > Javascript' 카테고리의 다른 글

instanceof --미완  (0) 2023.09.15
Number(), parseInt() 차이  (0) 2023.09.15
isNaN() 숫자인지 아닌지 여부  (0) 2023.09.15
Math클래스 소수  (0) 2023.09.14
toString()으로 여러 진법으로 변환  (0) 2023.09.14