首页 > 代码库 > 【JavaScript】数据类型

【JavaScript】数据类型

大家的数据类型

console.log (typeof (null)); ——object

console.log (typeof (undefined)); ——undefined

console.log (typeof (NaN)); ——number

-----------------------------------------------------------

var str = “syr1993”;

console.log (typeof (str++)); ——number

-----------------------------------------------------------

var str = “syr1993”;

console.log (typeof (str)); ——string

【JavaScript】数据类型