null
or undefined
.val
is equal to null
or undefined
.const isNil = val => val === undefined || val === null;
isNil(null); // true
isNil(undefined); // true
isNil(''); // false
Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️