📅  最后修改于: 2020-10-23 14:46:37             🧑  作者: Mango
JavaScript提供了不同的数据类型来保存不同类型的值。 JavaScript中有两种类型的数据类型。
JavaScript是一种动态类型语言,这意味着您无需指定变量的类型,因为它是JavaScript引擎动态使用的。您需要在此处使用var来指定数据类型。它可以保存任何类型的值,例如数字,字符串等。例如:
var a=40;//holding number
var b="Rahul";//holding string
JavaScript中有五种原始数据类型。它们如下:
Data Type | Description |
---|---|
String | represents sequence of characters e.g. “hello” |
Number | represents numeric values e.g. 100 |
Boolean | represents boolean value either false or true |
Undefined | represents undefined value |
Null | represents null i.e. no value at all |
非原始数据类型如下:
Data Type | Description |
---|---|
Object | represents instance through which we can access members |
Array | represents group of similar values |
RegExp | represents regular expression |
稍后我们将对每种数据类型进行大量讨论。