StrictisNilOn this pageisNilisNil variable Checks if the given value is null or undefined. Signature: isNil: <T>(input: T) => input is T & (null | undefined) Example isNil(1); // falseisNil('1'); // falseisNil(undefined); // trueisNil(null); // true Open Source Code