[JavaScript] 데이터 타입 확인
2022. 11. 30. 20:35
프로그래밍/JavaScript
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); // boole..