falsy values
In JavaScript, there are 6 falsy values:
1. false: the boolean value false
2. 0: the number zero
3. '': the empty string, a string with no characters
4. NaN : stands for "Not a Number", usually caused by math errors
5. undefined: a variable's value before it is assigned a value
6. null: a blank value that can be assigned to a variable
by Valeri Tandilashvili
2 years ago
JavaScript
0
Pro tip: use ```triple backticks around text``` to write in code fences