반응형 typeof1 [JS] typeof 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(typ.. 2023. 10. 24. 이전 1 다음 반응형