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
此处为广告