Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

ความแตกต่างระหว่างประเภทข้อมูล Primitive และ Non-primitive ใน JavaScript?


ชนิดข้อมูลพื้นฐาน ได้แก่ ตัวเลข สตริง บูลีน ทุ่น ฯลฯ ชนิดข้อมูลที่ไม่ใช่พื้นฐาน (ประเภทอ้างอิง) ได้แก่ อาร์เรย์ วัตถุ เป็นต้น

ตัวอย่าง

var number=10;
var stringValue="John";
var booleanValue=true;
var obj={};
var newArray=new Array();
console.log("The data type is="+typeof number);
console.log("The data type is="+typeof stringValue);
console.log("The data type is="+typeof booleanValue);
console.log("The data type is="+typeof obj);
console.log("The data type is="+typeof newArray);

ในการรันโปรแกรมข้างต้น คุณต้องใช้คำสั่งต่อไปนี้ -

node fileName.js.

ผลลัพธ์

ที่นี่ ชื่อไฟล์ของฉันคือ demo162.js สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

PS C:\Users\Amit\JavaScript-code> node demo162.js
The data type is=number
The data type is=string
The data type is=boolean
The data type is=object
The data type is=object