标签:undefined rip typeof 类型 console nan script ++ java
大家的数据类型
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
标签:undefined rip typeof 类型 console nan script ++ java
原文地址:http://www.cnblogs.com/shenyanran/p/6106087.html