1、null
null是一个对象,表示一个空对象指针,typeof(null)返回object,null参与运算时会转化为0,将对象初始化为null,可以知道变量是否保存了对象的引用
2、undefined
typeof(undefined)返回undefined
定义变量但未对其进行初始化时,其值为undefined
null == undefined true
null === undefined false
null是一个对象,表示一个空对象指针,typeof(null)返回object,null参与运算时会转化为0,将对象初始化为null,可以知道变量是否保存了对象的引用
typeof(undefined)返回undefined
定义变量但未对其进行初始化时,其值为undefined
null == undefined true
null === undefined false