WEB开发网
开发学院网页设计JavaScript javascript null与undefinedAuthor 阅读

javascript null与undefinedAuthor

 2009-02-13 20:06:19 来源:WEB开发网   
核心提示:null :表示无值;undefined : 表示一个未声明的变量,或已声明但没有赋值的变量,javascript null与undefinedAuthor,或一个并不存在的对象属性,==运算符将两者看作相等,所有的对象都是Object或其子类的实例,但null对象例外:document.writeln(null in

null :表示无值;
undefined : 表示一个未声明的变量,
或已声明但没有赋值的变量,
或一个并不存在的对象属性。

==运算符将两者看作相等。如果要区分两者,要使用===或typeof运算符。

————————————-默默无闻的分割线——————————————–

在javaScript中,null与undefined一度使人迷惑。下面的分析,有利于你更清晰的认知它(或者让你更迷惑):

- null是关键字;undefined是Global对象的一个属性

- null是对象(空对象, 没有任何属性和方法);undefined是undefined类型的值。试试下面的代码:

document.writeln(typeof null); //return object
document.writeln(typeof undefined); //return undefined- 对象模型中,所有的对象都是Object或其子类的实例,但null对象例外:

document.writeln(null instanceof Object); //return false- null”等值(==)”于undefined,但不”全等值(===)”于undefined:

document.writeln(null == undefined); //return true
document.writeln(null === undefined); //return false- 运算时null与undefined都可以被类型转换为false,但不等值于false:

document.writeln(!null, !undefined); //return true,true
document.writeln(null==false); //return false
document.writeln(undefined==false); //return false

Tags:javascript null undefinedAuthor

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接