Truthy and Falsy value.
To understand the truthy and falsy values in Javascript first, let's understand what is Null, Undefined and NAN-
Undefined:
let user;
console.log(user);
It means value does not exist in compiler or accessing value that is not defined. it's value for...
vikas360.hashnode.dev2 min read