javascript falsy values
// Falsy values:
0
''
undefined
null
NaNthe number 0
the BigInt 0n
the keyword null
the keyword undefined
the boolean false
the number NaN
the empty string "" (equivalent to '' or ``)/*
Yes.
Full list of falsy values:
Anything evaluated to be 0
'', "", or ``
null
undefined
NaN
Obviously false
Big integers relative to 0n
-------------------------------------------------------------------------
To clarify, line 31 will print false.
*/
var someCheckIsTrue = false;
const checks = [
0,
'',
"",
``,
null,
undefined,
NaN,
false,
0n
];
for (const check of checks) {
if (check) {
someCheckIsTrue = true;
}
}
console.log(someCheckIsTrue); let a = false
let b = 0
let c = -0
let d = 0n
let e = ''
let f = null
let g = undefined
let h = NaNif (true)
if ({})
if ([])
if (42)
if ("0")
if ("false")
if (new Date())
if (-42)
if (12n)
if (3.14)
if (-3.14)
if (Infinity)
if (-Infinity)
Also in JavaScript:
- Node Sass could not find a binding for your current environment
- js check if string contains character
- How to check if a member has a role discord.js
- make query param optional node
- jest mock call
- delete character between index
- jquery get class name
- form changes button enable reactive forms
- open a new tab when clicking on a link react
- get and set es6
- adding event listener keypress event in javascript
- javascript get a random number with 6 digits
- java script functions
- how to work react router another component
- javascript linting
- create element javascript with class
- how to get window size in react js
- access selected option in jquery
- vuejs my chart load before fetch data
- how to send json data in fetch request body
- square root in javascript
- javascript exeit from loop
- nodejs store json from web api
- chrome add a javascript bookmark