==
and !=
JS-005054}
55
56function queryChange() {
57 if ($('#search-query').val() != '') {58 queryShow();
59 }
60}
22function hijackLocalLink(i, a) {
23 if (window.location.host == a.host) {
24 $(a).on('click', function (e) {
25 if (e.ctrlKey || e.shiftKey || e.metaKey || (e.button && e.button == 1)) return;26 loadDocument(a.href);
27 history.pushState({ href: a.href }, '', a.href);
28 return (false);
20}
21
22function hijackLocalLink(i, a) {
23 if (window.location.host == a.host) {24 $(a).on('click', function (e) {
25 if (e.ctrlKey || e.shiftKey || e.metaKey || (e.button && e.button == 1)) return;
26 loadDocument(a.href);
It is considered good practice to use the type-safe equality operators ===
and !==
instead of their regular counterparts ==
and !=
.
The strict equality operators (===
and !==
) use the strict equality comparison algorithm to compare two operands.
false
.true
only if they refer to the same object.null
or both operands are undefined
, return true
.NaN
, return false
.+0
and -0
are considered to be the same value.true
or both false
.The most notable difference between this operator and the equality (==
) operator is that if the operands are of different types, the ==
operator attempts to convert them to the same type before comparing.
a == b
foo == true
bananas != 1
value == undefined
typeof foo == 'undefined'
'hello' != 'world'
0 == 0
true == true
foo == null
a === b
foo === true
bananas !== 1
value === undefined
typeof foo === 'undefined'
'hello' !== 'world'
0 === 0
true === true
foo === null