반응형
typeof
데이터 타입 확인하기
document.writeln(typeof "ABC"); // string
document.writeln(typeof 1); // number
document.writeln(typeof 1.2); // number
document.writeln(typeof { name : "Anne"});// 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
반응형
'WEB > JavaScript' 카테고리의 다른 글
[JS] 옵셔널 체이닝 (0) | 2023.10.24 |
---|---|
[JS] 구조 분해 할당 (0) | 2023.10.24 |
[JS] True & False (0) | 2023.10.24 |
[JS] 형변환 (0) | 2023.10.23 |
[JS] 배열 (0) | 2023.10.23 |