基本数据类型——undefined与null

1、undefined表示没有为变量设置值或者属性不存在。null表示变量是有值的,只是其值为null

2、null == undefined返回为true,null === undefined返回为false

  

  

原文地址:https://www.cnblogs.com/yrrong/p/8994064.html