基本数据类型:
undefined,Boolean,Number,String,null
underfind 声明了但是未赋值
Boolean 布尔
Number 数字
String 字符串
Var 动态类型
typeof 变量类型判断
null 空对象/对象不存在
使用typeof来进行判断数据类型
var x;
x=5;
document.write(typeof(x));
var y;
y='hello'
document.write(typeof y);
基本数据类型:
undefined,Boolean,Number,String,null
underfind 声明了但是未赋值
Boolean 布尔
Number 数字
String 字符串
Var 动态类型
typeof 变量类型判断
null 空对象/对象不存在
使用typeof来进行判断数据类型
var x;
x=5;
document.write(typeof(x));
var y;
y='hello'
document.write(typeof y);