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

以上是 JavaScript中原始数据类型和非原始数据类型之间的区别? 的全部内容, 来源链接: utcz.com/z/343450.html

回到顶部