Javascript 与 ActionScript 中 null、NaN和undefined的区别
AS中:其实Null、NaN和undefined都是变量的默认初始值。变量类型不同,系统给与的初始值就不同:int,uint-0Boolean-falseNumber-NaNString,Array,Object-null未指定变量类型-undefinedJS中:1.类型分析:js中的数据类型有undefined,boolean,number,string,object等5种,前4种为原始类型,第