728x90
반응형
JavaScript 데이터 타입 확인
typeof
typeof 연산자는 operand의 타입을 나타내는 문자열을 리턴
typeof operand
typeof(operand)
예제
document.writeln(typeof "ABC"); // string
document.writeln(typeof 1); // number
document.writeln(typeof 1.2); // number
document.writeln(typeof { name : "nana"});// object
document.writeln(typeof null); // object
document.writeln(typeof [1, 2, 3]); // object
document.writeln(typeof true); // boolean
document.writeln(typeof undeclaredVariable); // undefined
document.writeln(typeof function() {}); // function
document.writeln(typeof 11n); // bigint
반응형
'프로그래밍 > JavaScript' 카테고리의 다른 글
[JavaScript] JavaScript 배열의 요소를 삭제 (0) | 2022.12.13 |
---|---|
[JavaScript] 문서의 DOM이 모두 로드된 후 실행하기 (로딩의 순서) (0) | 2022.12.09 |
[JavaScript] 뒤로가기 시 페이지 정보 및 스크롤 위치 불러오기 (0) | 2022.11.28 |
[JavaScript] localStorage와 sessionStorage 차이점 (0) | 2022.11.23 |
[JavaScript] 자바스크립트 스크롤 위치 저장 (0) | 2022.11.22 |