🎜>< ;title>javascript
<script> <br>//1. 기본 유형<br>var x = "abc"; 🎜> var z = true;//alert(typeof x);//숫자 <br>//alert(typeof y);//string <br>//alert(typeof z);//boolean <br> //2. 유형은 객체입니다 <br>var arr = new Array() <br>var str = new String("abc"); 🎜>/ /alert(typeof arr);//object <br>//alert(typeof date);//object <br>//alert(typeof str);//object <br>//3. , 이해할 수 있음 JavaScript의 클래스 시뮬레이션은 function <br>alert(typeof Array);//function <br>alert(typeof Date);//function <br>alert(typeof String);//function </script>