一.基本数据类型:String, Number, Boolean,Null,undefined 复杂数据类型:Object(object,array,function) 二. typeof Number—>function typeof 123–> number typeof String–>function typeof ‘123’–>string typeof null—> object typeof undefined–>undefined typeof object—>function typeof window—>object ...