Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 318 Bytes

check-if-a-value-is-nil.mdx

File metadata and controls

20 lines (16 loc) · 318 Bytes
category contributors created title updated
Validator
JeromeDeLeon
2020-05-06
Check if a value is nil
2021-10-13

JavaScript version

const isNil = (value) => value == null;

TypeScript version

const isNil = (value: any): boolean => value == null;