Checks if the provided value is undefined.
const result1 = isUndefined(undefined); // trueconst result2 = isUndefined(null); // falseconst result3 = isUndefined(123); // falseconst result4 = isUndefined('Hello'); // false
The value to check.
Checks if the provided value is undefined.
Example