----数据类型----
1.分类
--基本(值)类型
----String: 任意字符串
----Number: 任意数字
----Boolean: true/false
----Undefined: undefined
----Null: null
--对象(引用)类型
----Objct: 任意对象
----Function: 一种特别的对象(可以执行)
----Array: 一种特别的对象(数组下标)
2.判断
--typeof: 返回数据类型的字符串
----可以判断: undefined / string / number / boolean / function
----不能判断: null和object / array和objct
--instanceof: 是否属于某个实例;返回Boolean
----判断对象的具体类型
-- ===(全等)
----可以判断: undefined / null
function Stured(){
}
var stu = new Stured()
Stured.porotype
stu.__poro__
原文:https://www.cnblogs.com/zwj-juncy/p/12421773.html