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
반응형
복사했습니다!