é fácil converter qualquer coisa de um booleano em JavaScript. Os valores Truthy serão convertidos para valores true e falsy serão convertidos para falsos. Existem duas maneiras de converter variáveis a um booleano., There is the Boolean
function, and there is the !!
shortcut.
There are 6 kinds of falsy values:
false
0
- empty string:
""
,''
, or``
null
undefined
-
NaN
— not a number value
Anything else is truthy.,
Se você avaliar como boolean como assim, você obtém:
como oposição a truthy valores como objetos, que são qualquer outra coisa, mas os valores acima:
Boolean({}) // true
Boolean(true) // true
Boolean() // true
Você também pode usar o !!
atalho para o elenco Booleano, o direito !
elenco de uma variável booleana e negar o valor e a esquerda !
negá-lo de volta para o real valor booleano.,
!!(false); // false
!!(0); // false
!!(""); // false
!!(''); // false
!!(``); // false
!!(undefined); // false
!!(null); // false
!!(NaN); // false
Similarly for truthy values:
!!({}) // true
!!(true) // true
!!() // true
With shortcut evaluation, boolean ANDs and ORs are evaluated up to the first truthy value:
const abc = false && "abc"; // false, since false is false and "abc" is trueconst def = false || "def"; // true, since false is false and "def" is true