#1楼
区别是微妙的。
在JavaScript中, undefined
变量是从未声明或从未分配值的变量。 假设您声明var a;
例如,那么a
将是undefined
,因为它从未分配任何值。
但是如果您再分配a = null;
那么a
现在将为null
。 在JavaScript中, null
是一个对象(如果您不相信我,请在JavaScript控制台中尝试typeof null
),这意味着null是一个值(实际上,甚至undefined
都是一个值)。
例:
var a;
typeof a; # => "undefined"
a = null;
typeof null; # => "object"
这在函数参数中可能很有用。 您可能需要一个默认值,但是认为null为可以接受的。 在这种情况下,您可以执行以下操作:
function doSomething(first, second, optional) {
if (typeof optional === "undefined") {
optional = "three";
}
// do something
}
如果省略optional
参数doSomething(1, 2) then
optional将是"three"
字符串,但如果传递doSomething(1, 2, null)
则optional将为null
。
对于等于==
和严格等于===
比较器,第一个比较器是弱类型,而严格等于也检查值的类型。 这意味着0 == "0"
将返回true; 而0 === "0"
将返回false,因为数字不是字符串。
您可以使用这些运算符在undefined
的null
之间进行检查。 例如:
null === null # => true
undefined === undefined # => true
undefined === null # => false
undefined == null # => true
最后一种情况很有趣,因为它允许您检查变量是未定义的还是null,而没有别的:
function test(val) {
return val == null;
}
test(null); # => true
test(undefined); # => true
#2楼
未定义
这意味着该变量尚未初始化。
范例:
var x;
if(x){ //you can check like this
//code.
}
等于(==)
它只检查值等于数据类型。
范例:
var x = true;
var y = new Boolean(true);
x == y ; //returns true
因为它只检查值。
严格等于(===)
检查值和数据类型应该相同。
范例:
var x = true;
var y = new Boolean(true);
x===y; //returns false.
因为它检查数据类型x是原始类型,y是布尔对象。
#3楼
规范是为这些问题提供完整答案的地方。 总结如下:
- 对于变量
x
,您可以:- 通过使用
===
直接比较来检查它是否为null
。 示例:x === null
- 通过以下两种基本方法之一检查其是否
undefined
:与undefined
或typeof
直接比较。 由于各种原因 ,我更喜欢typeof x === "undefined"
。 - 通过使用
==
并依靠稍微神秘的类型强制规则来检查它是否为null
和undefined
之一,这意味着x == null
确实可以满足您的要求。
- 通过使用
-
==
和===
之间的基本区别在于,如果操作数是不同类型,则===
将始终返回false
而==
将使用导致某些稍微不直观的行为的规则将一个或两个操作数转换为相同类型。 如果操作数具有相同的类型(例如,两者都是字符串,例如上面的typeof
比较),则==
和===
行为将完全相同。
更多阅读:
- 安格斯·克罗尔的真相,平等和JavaScript
- Andrea Giammarchi的JavaScript强制性神秘化
- comp.lang.javascript常见问题解答: JavaScript类型转换
#4楼
如果(逻辑)检查是否为负号(!),并且您想同时捕获JS null
和undefined
JS(因为不同的浏览器将为您提供不同的结果),则应使用限制性较小的比较:例如:
var ItemID = Item.get_id();
if (ItemID != null)
{
//do stuff
}
这将同时捕获null
和undefined
#5楼
如何检查变量是否为null或未定义
只需检查变量是否具有如下有效值:
if(variable)
如果变量不包含,它将返回true:
- 空值
- 未定义
- 0
- 假
- “”(空字符串)
- N
#6楼
如何检查变量是否为
null
或undefined
...
变量是否为null
:
if (a === null)
// or
if (a == null) // but see note below
...但是请注意,如果a
undefined
,后者也将适用。
它是undefined
:
if (typeof a === "undefined")
// or
if (a === undefined)
// or
if (a == undefined) // but see note below
...但是再次,请注意,最后一个是模糊的; 如果a
为null
,则也将为true。
现在,尽管有上述情况,检查这些内容的通常方法是使用它们是假的事实:
if (!a) {
// `a` is falsey, which includes `undefined` and `null`
// (and `""`, and `0`, and `NaN`, and [of course] `false`)
}
...以及
null
和undefined
和有什么undefined
?
它们都是通常用来表示缺少某些东西的值。 undefined
是更通用的一种,用作变量的默认值,直到为其分配了其他值,作为调用函数时未提供的函数参数的值,以及当您询问变量时获得的值没有属性的对象。 但也可以在所有这些情况下明确使用它。 (不具有属性的对象与具有值为undefined
的属性之间存在差异;为参数调用具有值为undefined
的函数与完全禁用该参数之间存在差异。)
null
比undefined
更加具体:这是一个空白对象引用。 当然,JavaScript是松散类型的,但并非与JavaScript交互的所有事物都是松散类型的。 如果浏览器中的DOM之类的API需要空白的对象引用,则我们使用null
,而不是undefined
。 同样,DOM的getElementById
操作返回一个对象引用-一个有效的对象引用(如果找到了DOM元素),或者为null
(如果没有找到)。
有趣的是(或者不是),它们是自己的类型。 也就是说, null
是Null类型中的唯一值, undefined
是Undefined类型中的唯一值。
“ ==”和“ ===”有什么区别
它们之间的唯一区别是==
将执行强制转换以尝试使值匹配,而===
则不会。 因此,例如"1" == 1
为true,因为"1"
强制为1
。 但是"1" === 1
是false ,因为类型不匹配。 ( "1" !== 1
为真。) ===
第一步(实际)是“操作数的类型是否相同?” 如果答案为“否”,则结果为false
。 如果类型相同,则将完全执行==
操作。
类型强制使用非常复杂的规则,并且会产生令人惊讶的结果(例如, "" == 0
为true)。
规格中的更多内容:
#7楼
您可以使用下面的代码检查所有四(4)条条件以进行验证,例如not null,not blank,not undefined和not zero仅在javascript和jquery中使用此代码(!(!(variable)))。
function myFunction() {
var data; //The Values can be like as null, blank, undefined, zero you can test
if(!(!(data)))
{
//If data has valid value
alert("data "+data);
}
else
{
//If data has null, blank, undefined, zero etc.
alert("data is "+data);
}
}
#8楼
广告1. null
不是全局对象属性的标识符,例如undefined
可以是
let x; // undefined let y=null; // null let z=3; // has value // 'w' // is undeclared if(!x) console.log('x is null or undefined'); if(!y) console.log('y is null or undefined'); if(!z) console.log('z is null or undefined'); try { if(w) 0 } catch(e) { console.log('w is undeclared') } // typeof not throw exception for undelared variabels if(typeof w === 'undefined') console.log('w is undefined');
广告2。 ===
检查值和类型。 ==
不需要相同的类型,并且在比较之前进行隐式转换(使用.valueOf()
和.toString()
)。 这是全部( src ):
如果
== (其否定!= )
=== (其否定!== )
来源:CSDN
作者:asdfgh0077
链接:https://blog.csdn.net/asdfgh0077/article/details/103910661