What are the falsy values in Javascript
Falsy values are the values that return false.There are six falsy values in JavaScript.
Undefined | A primitive value |
Null | Blank value |
Nan | Not a number |
0/-0 | The zero and negative zero |
“” | Empty string |
False | A false keyword |