<div class="codetitle"> <span><a style="CURSOR: pointer" data="12899" class="copybut" id="copybut12899" onclick="doCopy('code12899')"><u>コードをコピー</u></a></span> コードは次のとおりです。</div> <div class="codebody" id="code12899"> <br><!doctype html> ; <br><head> <br><meta http-equiv="content-type" content="text/html; charset=UTF-8"> <br><title>javascript データ型</タイトル> <br></head> <br><script type="text/javascript"> <br>/**<br>JavaScript では、<br> 3 つの基本データ型 (数値、テキスト文字、ブール値) を使用できます。数値にはドットの数も含まれます。<br>さらに、null (空) と unknown (未定義) という 2 つの小さなデータ型もサポートされています。これらの 2 つの小さなデータ型は、それぞれ 1 つの値のみを定義します。 <br>また、複合データ型もサポートします -- オブジェクト。配列もオブジェクトの一種であることに注意してください。<br>さらに、js は特別なオブジェクト -- 関数も定義します。データ型は非常に強力です。 。 。 <br>JavaScript 言語のコアでは、関数と配列に加えて、その他の特殊なオブジェクトも定義されています。例: Date、RegExp、Error...<br>*/ <br> 🎝> */ <br>var $num = 111; <br>var $str = "aaabbbccc"; <br>var $b = false; <br>document.write("JavaScript のさまざまなデータ型: "); <br>document.write("<br/>$num のタイプ: " typeof $num);//number <BR>document.write("<br/>$str のタイプ: " typeof $ str);//string <BR>document.write("<br/>$b の種類: " typeof $b);//boolean <BR>/**<BR>3 つの基本的なデータ型 <BR>*/ <BR>var x ; <BR>document.write("<br/>x のデータ型: " typeof x);//未定義 <BR>var bbb = !x;//true <BR>document.write("< ; br/>Bbb のデータ型: " typeof bbb);//boolean <br>document.write("<br/>2 つの小さなデータ型: " typeof null "、" typeof unknown);//object 、未定義 <BR>/**<BR>2 つの小さなデータ型 <BR>*/ <BR>function myFun(x){//......aaa<BR>return x*x; <BR>} <BR>var myFunFun = function(x){//....bbb<BR>return x*x>} <BR>alert(myFun) ;//aaa<BR> alert(myFunFun);//bbb<BR>document.write("<br/>myFun, myFunFun のタイプ: " typeof myFun "," typeof myFunFun);//function ,function <BR>/** <BR>特殊なデータ型: 関数 <BR>*/ <BR>//最初の方法: 基本的なオブジェクトを構築し、そのオブジェクトに属性を追加して、<BR>var obj = new Object(); <BR>obj. 🎜>obj.sex = "sex"; <BR>// 2 番目の方法: オブジェクトの直接量を使用します<BR>var ooo = {}; <BR>ooo.name = "yangjiang" ; "sex"; <BR>// 3 番目の方法: 型を定義します (JAVA 言語のクラスに似ています): このメソッドは、最も一般的に使用される <BR> 関数 People(name,sex){ <BR>this.name = name; <BR>this.sex = sex; <BR>} <BR>var oooo = new People("yangjiang","sex") <BR>//<BR> の結果を出力するには次の 3 つの方法があります。 document.write("<br/>obj type: " typeof obj);//object <BR>document.write("<br/>ooo type: " typeof ooo) ;//object <BR> document.write("<br/>oooo type: " typeof oooo);//object <BR>/**<BR>オブジェクトのデータ型、以下の3つのメソッド<BR>*/ <BR>var $array = [] ; <BR>var $arrayA = ["aaa","bbb",111,false]; <BR>var $arrayB = new Array(); <BR>document.write("<br/>$array $arrayA のデータ型); //object <br>document.write("<br/>$arrayA のデータ型: " typeof $arrayA);//object <BR>document.write(" <br/>gt;データ型$arrayB: " typeof $arrayB);//object <BR></script> <br></body> <br></html> <br><br> </div>