TRUTHY and FALSY In javascript any variable with an assigned value without zero is true. Like- 1, -1, 3, etc. When the variable is declared without value, it is undefined. Undefined is always false. Variable with default value null is always false. Variable with value NaN is false. Empty array…