null和undefined 概述 null与undefined都可以表示"没有",含义非常相似.将一个变量赋值为undefined或null,老实说,语法效果几乎没区别. var a = undefined; // 或者 var a = null; 上面代码中,a变量分别被赋值为undefined和null,这两种写法的效果几乎等价. 在if语句中,它们都会被自动转为false,相等运算符(==)甚至直接报告两者相等. if (!undefined) { console.log('u…
Javascript Undefined vs NULL Many a times we often get confused on whats the difference between UNDEFINED and NULL. undefined means a variable has been declared but has not yet been assigned a value. On the other hand, null is an assignment value.…