🎜>
JavaScript での typeof の使用
<script><br>var x = 123; 🎜> var z = true; <br>//alert(typeof x);//number <br>//alert(typeof y);//string <br>//alert(typeof z);//boolean <br> //2. 参照型。型はオブジェクトです。 <br>var arr = new Date(); <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>