I saw in a pull request that the double negation operator (!!) is used for the focus attribute of a text field as follows:
JavaScript
x
2
1
focused: !!value || value === 0,
2
As far as I know, the operator converts everything to a boolean. If it was falsy (for example 0, null, undefined,..), it will be false, otherwise, true.
In my case, i.e. if value = 0, the following comes out:
JavaScript
1
2
1
focused: false || true
2
The || operator here therefore makes no sense for the value 0 or am I completely confused?
Advertisement
Answer
It looks like a check for numbers to get false for ''
, ""
, false
, NaN
, undefined
and null
. Other bjects, like functions, arrays or simple objects returns true
;
JavaScript
1
11
11
1
const check = value => !!value || value === 0;
2
3
console.log(check(0));
4
console.log(check(1));
5
console.log(check(''));
6
console.log(check(""));
7
console.log(check(false));
8
console.log(check(NaN));
9
console.log(check(null));
10
console.log(check(undefined));
11
console.log(check({}));